Skip to content

Commit 84b960b

Browse files
committed
Fix application status in checkin box, verify id
1 parent 4292f0c commit 84b960b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/dashboard/components/identity-portal/check-in-box/check-in-box.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function CheckInBox(props: CheckInBoxProps) {
3333
if (user != null) {
3434
// checkDiscord(user.id).then((v) => setDiscordVerified(v));
3535
setWaiver(user.waiver_signed);
36-
setAdmitted(user.application_state === 5);
36+
setAdmitted(user.application_status === 5);
3737
}
3838
}, [user]);
3939

@@ -145,7 +145,7 @@ export function CheckInBox(props: CheckInBoxProps) {
145145
/>
146146
<Checkbox
147147
color="yellow"
148-
label="Joined Discord"
148+
label="Verify ID"
149149
checked={discordVerified}
150150
onInput={handleClick(setDiscordVerified)}
151151
/>

0 commit comments

Comments
 (0)