Skip to content

Commit 87c1faf

Browse files
committed
add rejected status to UserProfile type
1 parent 91a3ff4 commit 87c1faf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/types/user-profile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type UserProfile = {
66
firstNames: string
77
lastNames: string
88
pronouns: "he/him" | "she/her" | "they/them" | "xe/xem" | "Please Ask" | "Unspecified"
9-
applicationStatus: "unsubmitted" | "submitted" | "accepted" | "waiting-list"
9+
applicationStatus: "unsubmitted" | "submitted" | "accepted" | "rejected" | "waiting-list"
1010
uploadedCv: boolean
1111
/** epoch timestamp in milliseconds, or 'null' when not checked in */
1212
checkedInAt: number | null

0 commit comments

Comments
 (0)