diff --git a/frontend/src/components/ClubStateBox/ClubStateBox.tsx b/frontend/src/components/ClubStateBox/ClubStateBox.tsx index 6b54b10e9..0b3da19e9 100644 --- a/frontend/src/components/ClubStateBox/ClubStateBox.tsx +++ b/frontend/src/components/ClubStateBox/ClubStateBox.tsx @@ -5,6 +5,7 @@ const STATE_TEXT: Record = { OPEN: '모집중', CLOSED: '모집마감', ALWAYS: '상시모집', + UPCOMING: '모집예정', } as const; const BOX_DIMENSIONS = { diff --git a/frontend/src/styles/clubTags.ts b/frontend/src/styles/clubTags.ts index 71495dfaa..4797b6629 100644 --- a/frontend/src/styles/clubTags.ts +++ b/frontend/src/styles/clubTags.ts @@ -18,4 +18,5 @@ export const STATUS_COLORS: Record = { 모집중: colors.accent[1][900], 모집마감: colors.gray[500], 상시모집: colors.accent[2][900], + 모집예정: colors.accent[1][900], };