Skip to content

Commit c482034

Browse files
committed
modify: 회의 의견 반영
1 parent 186c1b4 commit c482034

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const SORT_TYPE = {
22
작성일순: '',
33
조회순: 'dailyViewCount',
4-
오늘조회순: 'todayViewCount',
4+
조회변동순: 'viewGrowth',
55
좋아요순: 'dailyLikeCount',
66
} as const;

src/types/searchParams.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { SORT_TYPE } from '@/constants';
22

3-
export type SortKey = '작성일순' | '조회순' | '오늘조회순' | '좋아요순';
3+
export type SortKey = '작성일순' | '조회순' | '조회변동순' | '좋아요순';
44
export type SortValue = (typeof SORT_TYPE)[keyof typeof SORT_TYPE];
55

66
export type SortType = Record<SortKey, string>;

0 commit comments

Comments
 (0)