Skip to content

Commit

Permalink
add role=none to ul of userlist since it gets confusey broken with th…
Browse files Browse the repository at this point in the history
…e role of listbox of the parent
  • Loading branch information
daiverd committed Feb 11, 2025
1 parent fa9b984 commit 8e3f778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/userlist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const Userlist: React.FC<UserlistProps> = ({ users }) => {
onKeyDown={handleKeyDown}
>
<div className="sidebar-content">
<ul>
<ul role="none">
{users.map((player, index) => {
let classes = "";
let status = "Online";
Expand Down

0 comments on commit 8e3f778

Please sign in to comment.