Skip to content

Commit

Permalink
Merge pull request #165 from Yanolza-Miniproject/feature/#164
Browse files Browse the repository at this point in the history
Fix: 숙소 타입명 통일
  • Loading branch information
mysdpy30s authored Nov 30, 2023
2 parents 6671cb4 + 5d8fdf5 commit b848804
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ export const accommoationTypes = [
value: 99,
},
{
label: "관광호텔",
label: "호텔",
value: 0,
},
{
label: "콘도미니엄",
label: "콘도",
value: 1,
},
{
label: "유스호스텔",
label: "호스텔",
value: 2,
},
{
Expand All @@ -36,7 +36,7 @@ export const accommoationTypes = [
value: 7,
},
{
label: "서비스드레지던스",
label: "레지던스",
value: 8,
},
{
Expand Down Expand Up @@ -75,7 +75,7 @@ export const regionTypes = [
value: 5,
},
{
label: "제주시",
label: "제주도",
value: 6,
},
];
8 changes: 4 additions & 4 deletions src/components/DetailList/ProductTitle/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: "한옥",
};

Expand Down

0 comments on commit b848804

Please sign in to comment.