Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/ContestStatus/ContestStatus.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const AuditStatus = {
/** Paused: The audit is in between Rolling Triage cohorts */
Paused: "Paused",
Review: "Review",
Restricted: "Restricted",
Judging: "Judging",
PJQA: "Post-Judging QA",
JudgingComplete: "Judging Complete",
Expand Down
4 changes: 2 additions & 2 deletions src/lib/ContestTile/ContestTile.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export interface ContestTileData {
endDate: string;
/** Boolean indicating certification status of logged in user. Required for viewing certain contests. */
isUserCertified: boolean;
status: AuditStatus;
status: AuditStatus | null;
}

export interface BaseContestSchedule {
Expand All @@ -104,7 +104,7 @@ export interface BaseContestSchedule {
}

export interface ContestSchedule extends BaseContestSchedule {
status: AuditStatus;
status: AuditStatus | null;
end: Date;
/** The time the current cohort will pause. */
pause: Date | null;
Expand Down
Loading