diff --git a/src/components/Category/CategoryFilter/CategoryFilter.constants.ts b/src/components/Category/CategoryFilter/CategoryFilter.constants.ts index 4187e5b..85fce71 100644 --- a/src/components/Category/CategoryFilter/CategoryFilter.constants.ts +++ b/src/components/Category/CategoryFilter/CategoryFilter.constants.ts @@ -4,15 +4,15 @@ export const accommoationTypes = [ value: 99, }, { - label: "관광호텔", + label: "호텔", value: 0, }, { - label: "콘도미니엄", + label: "콘도", value: 1, }, { - label: "유스호스텔", + label: "호스텔", value: 2, }, { @@ -36,7 +36,7 @@ export const accommoationTypes = [ value: 7, }, { - label: "서비스드레지던스", + label: "레지던스", value: 8, }, { @@ -75,7 +75,7 @@ export const regionTypes = [ value: 5, }, { - label: "제주시", + label: "제주도", value: 6, }, ]; diff --git a/src/components/DetailList/ProductTitle/index.tsx b/src/components/DetailList/ProductTitle/index.tsx index 4556088..5aba32c 100644 --- a/src/components/DetailList/ProductTitle/index.tsx +++ b/src/components/DetailList/ProductTitle/index.tsx @@ -2,15 +2,15 @@ import * as Styled from "./ProductTitle.styles"; import { ProductTitleProps } from "./ProductTitle.types"; const typeTexts: { [key: number]: string } = { - 0: "관광호텔", - 1: "콘도미니엄", - 2: "유스호스텔", + 0: "호텔", + 1: "콘도", + 2: "호스텔", 3: "펜션", 4: "모텔", 5: "민박", 6: "게스트하우스", 7: "홈스테이", - 8: "서비스드레지던스", + 8: "레지던스", 9: "한옥", };