diff --git a/app/_common/constants/matchStatus.ts b/app/_common/constants/matchStatus.ts index a144cbbd..d0bc0cd3 100644 --- a/app/_common/constants/matchStatus.ts +++ b/app/_common/constants/matchStatus.ts @@ -1,6 +1,7 @@ const dict: { [key: string]: { label: string; color: string } } = { - PENDING: { label: "매칭중", color: "bg-neoBlue" }, + PROGRESS: { label: "매칭중", color: "bg-neoGreen" }, MATCHED: { label: "매칭됨", color: "bg-neoGreen" }, + PENDING: { label: "보류", color: "bg-neoYellow" }, CANCELED: { label: "취소", color: "bg-neoYellow" }, FINISHED: { label: "종료", color: "bg-neoRed" }, }; diff --git a/app/_common/types/matching.ts b/app/_common/types/matching.ts index 91dceffb..ec068a71 100644 --- a/app/_common/types/matching.ts +++ b/app/_common/types/matching.ts @@ -1,4 +1,9 @@ -export type MatchStatus = "PENDING" | "MATCHED" | "CANCELED" | "FINISHED"; +export type MatchStatus = + | "PENDING" + | "MATCHED" + | "PROGRESS" + | "CANCELED" + | "FINISHED"; export interface Match { matchingId: number;