Skip to content

Commit

Permalink
add // eslint-disable-next-line no-unused-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
nikk15 committed Jun 13, 2023
1 parent a7f6881 commit cb7974f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/react-components/room/PeopleSidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export function PeopleSidebar({
const me = people.find(person => !!person.isMe);
const filteredPeople = people
.filter(person => !person.isMe)
// eslint-disable-next-line no-unused-vars
.sort((a, _b) => {
return a.hand_raised ? -1 : 1;
});
Expand Down

0 comments on commit cb7974f

Please sign in to comment.