We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4292f0c commit 84b960bCopy full SHA for 84b960b
apps/dashboard/components/identity-portal/check-in-box/check-in-box.tsx
@@ -33,7 +33,7 @@ export function CheckInBox(props: CheckInBoxProps) {
33
if (user != null) {
34
// checkDiscord(user.id).then((v) => setDiscordVerified(v));
35
setWaiver(user.waiver_signed);
36
- setAdmitted(user.application_state === 5);
+ setAdmitted(user.application_status === 5);
37
}
38
}, [user]);
39
@@ -145,7 +145,7 @@ export function CheckInBox(props: CheckInBoxProps) {
145
/>
146
<Checkbox
147
color="yellow"
148
- label="Joined Discord"
+ label="Verify ID"
149
checked={discordVerified}
150
onInput={handleClick(setDiscordVerified)}
151
0 commit comments