Skip to content

Commit

Permalink
chore: delete redundant files on root
Browse files Browse the repository at this point in the history
  • Loading branch information
umitcan07 committed Oct 25, 2024
1 parent 8c5a3e1 commit 8751f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/routes/Quizzes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const Quizzes = () => {
.map((quiz) => {
return {
...quiz,
is_taken: logged_in ? false : quiz.is_taken,
is_taken: !logged_in ? false : quiz.is_taken,
};
})
.map((quiz) => (
Expand Down

0 comments on commit 8751f20

Please sign in to comment.