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 73af712 commit 82526b7Copy full SHA for 82526b7
src/lib/ContestStatus/ContestStatus.types.ts
@@ -41,6 +41,7 @@ export enum AuditPublicStage {
41
Upcoming = "Upcoming",
42
SubsClosed = "Submissions closed",
43
Completed = "Completed",
44
+ LiveJudging = "Live Judging",
45
}
46
47
// Grouping mapping of the audit statuses to the public stages
@@ -60,6 +61,7 @@ export const MapAuditStatusToAuditPublicStage: Record<
60
61
[AuditStatus.JudgingComplete]: AuditPublicStage.SubsClosed,
62
[AuditStatus.Paused]: AuditPublicStage.SubsClosed,
63
[AuditStatus.Completed]: AuditPublicStage.Completed,
64
+ [AuditStatus.LiveJudging]: AuditPublicStage.LiveJudging,
65
// Excluded statuses:
66
[AuditStatus.LostDeal]: null,
67
[AuditStatus.Booking]: null,
0 commit comments