Skip to content

Commit

Permalink
allow checkers to revote if they passed
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsarge committed May 5, 2024
1 parent 751727a commit 86b2e37
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion checkers-app/src/components/vote/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ export default function VotePage() {
caption={vote.caption}
/>
<Alert variant="ghost">Sender: {vote.sender}</Alert>
{vote.category === null || !vote.isAssessed ? (
{vote.category === null ||
vote.category === "pass" ||
!vote.isAssessed ? (
<>
<Typography
variant="h4"
Expand Down

0 comments on commit 86b2e37

Please sign in to comment.