Skip to content

Commit

Permalink
fix(preset): change variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuChigon committed May 30, 2022
1 parent 2255d02 commit 6537bec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/AdminContent/AdminContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ export function useUsers(
const _users = users.map(user => {
if (selectedUsers.includes(user.sparcsId)) {
return {
sparcs_id: user.sparcsId,
sparcsId: user.sparcsId,
isVotable: true,
};
} else {
return {
sparcs_id: user.sparcsId,
sparcsId: user.sparcsId,
isVotable: false,
};
}
Expand Down

0 comments on commit 6537bec

Please sign in to comment.