Skip to content

Commit

Permalink
Fix application status in checkin box, verify id
Browse files Browse the repository at this point in the history
  • Loading branch information
VictiniX888 committed Nov 9, 2024
1 parent 4292f0c commit 84b960b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function CheckInBox(props: CheckInBoxProps) {
if (user != null) {
// checkDiscord(user.id).then((v) => setDiscordVerified(v));
setWaiver(user.waiver_signed);
setAdmitted(user.application_state === 5);
setAdmitted(user.application_status === 5);
}
}, [user]);

Expand Down Expand Up @@ -145,7 +145,7 @@ export function CheckInBox(props: CheckInBoxProps) {
/>
<Checkbox
color="yellow"
label="Joined Discord"
label="Verify ID"
checked={discordVerified}
onInput={handleClick(setDiscordVerified)}
/>
Expand Down

0 comments on commit 84b960b

Please sign in to comment.