Skip to content

Commit 927065f

Browse files
committed
fix: add extreme level tag
1 parent 4aa4cc0 commit 927065f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/entities/slope/model/model.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export type Level = '초급' | '초중급' | '중급' | '중상급' | '상급' | '최상급' | '파크';
1+
export type Level = '초급' | '초중급' | '중급' | '중상급' | '상급' | '최상급' | '파크' | '익스트림';
22

33
export type SlopeRaw = {
44
slopeId: number;

src/entities/slope/ui/level-chip.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ const LEVEL: Record<Level, { text: string; color: string }> = {
3131
text: '파크',
3232
color: 'bg-sub-2',
3333
},
34+
익스트림: {
35+
text: '익스트림',
36+
color: 'bg-gray-70',
37+
},
3438
};
3539

3640
interface LevelChipProps {

0 commit comments

Comments
 (0)