Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit b37c6a3

Browse files
committed
fix: ApplicationStatus enum
1 parent 9a0bc78 commit b37c6a3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export enum ApplicationStatus {
2-
APPEAL,
3-
APPROVED,
4-
CANCELLED,
5-
FRAUD,
6-
IN_REVIEW,
7-
PENDING,
8-
RECEIVED,
9-
REJECTED,
2+
APPEAL = "APPEAL",
3+
APPROVED = "APPROVED",
4+
CANCELLED = "CANCELLED",
5+
FRAUD = "FRAUD",
6+
IN_REVIEW = "IN_REVIEW",
7+
PENDING = "PENDING",
8+
RECEIVED = "RECEIVED",
9+
REJECTED = "REJECTED",
1010
}
1111

1212
export type ApplicationStatusType = keyof typeof ApplicationStatus;

0 commit comments

Comments
 (0)