diff --git a/src/entities/common/ui/sort-type-box.tsx b/src/entities/common/ui/sort-type-box.tsx index a05502b..1a1c561 100644 --- a/src/entities/common/ui/sort-type-box.tsx +++ b/src/entities/common/ui/sort-type-box.tsx @@ -10,7 +10,7 @@ export const SortTypeBox = ({ const defaultSortOptions = [ { key: SortTypeKeys.LATEST, label: t('filter.sortOrders.latest') }, - { key: SortTypeKeys.HIGH_AMOUNT, label: t('common.highAmountOrder') } + { key: SortTypeKeys.HIGH_AMOUNT, label: t('filter.sortOrders.highest') } ]; const options = sortOptions || defaultSortOptions; diff --git a/src/locales/en.json b/src/locales/en.json index 895df54..5cf71c6 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -17,8 +17,7 @@ "noData": "No data available", "next": "Next", "latest": "Latest", - "oldest": "Oldest", - "highAmountOrder": "High Amount" + "oldest": "Oldest" }, "menu": { "home": "Home", @@ -96,7 +95,8 @@ "sortOrder": "Sort Order", "sortOrders": { "latest": "Latest", - "oldest": "Oldest" + "oldest": "Oldest", + "highest": "Highest" }, "startDate": "Start Date", "endDate": "End Date", diff --git a/src/locales/ko.json b/src/locales/ko.json index b8dd6c7..5387eae 100644 --- a/src/locales/ko.json +++ b/src/locales/ko.json @@ -17,8 +17,7 @@ "noData": "데이터가 없습니다", "next": "다음", "latest": "최신순", - "oldest": "오래된순", - "highAmountOrder": "고액순" + "oldest": "오래된순" }, "menu": { "home": "홈", @@ -96,7 +95,8 @@ "sortOrder": "정렬순서", "sortOrders": { "latest": "최신순", - "oldest": "과거순" + "oldest": "과거순", + "highest": "고액순" }, "startDate": "시작일", "endDate": "종료일",