Skip to content

Commit b6234e0

Browse files
authored
Merge pull request #99 from code4rena-dev/fix-types
[types]: add new LiveJudging status type
2 parents 4d5a6b0 + 73af712 commit b6234e0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code4rena/components-library",
3-
"version": "4.5.11",
3+
"version": "4.5.12",
44
"description": "Code4rena's official components library ",
55
"types": "./dist/lib.d.ts",
66
"exports": {

src/lib/ContestStatus/ContestStatus.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const AuditStatus = {
3131
Reporting: "Reporting",
3232
Completed: "Completed",
3333
LostDeal: "Lost Deal",
34+
LiveJudging: "LiveJudging",
3435
} as const;
3536
// Take the AuditStatus object, and make a string literal type of the values
3637
export type AuditStatus = (typeof AuditStatus)[keyof typeof AuditStatus];

0 commit comments

Comments
 (0)