Skip to content

Commit

Permalink
fix: 음식점 추가 모달 임시 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
Leejha committed Sep 14, 2023
1 parent fba54f6 commit 627c1b3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function DrinkSearchModal({ onToggleDrinkSearchModal }: Props) {
regionOption={regionOption}
onChangeRegionOption={onChangeRegionOption}
></RegionSelect>
{regionOption && <SearchInput placeholder="관심있는 술을 검색해보세요." />}
{/* {regionOption && <SearchInput placeholder="관심있는 술을 검색해보세요." />} */}
<SelectedDrinkChipList>
{selectedDrinkList.map((manufacturer) => (
<SelectedDrinkChip manufacturer={manufacturer} onClickDeleteItem={onClickDeleteItem}>
Expand All @@ -69,15 +69,15 @@ function DrinkSearchModal({ onToggleDrinkSearchModal }: Props) {
{regionOption && (
<ResultSection>
<DrinkList>
{TEMP_LIST.map(({ drinkName, manufacturer }) => (
{/* {TEMP_LIST.map(({ drinkName, manufacturer }) => (
<DrinkItem
onClick={onClickAddDrink}
staticImage={EmptyAImg}
drinkName={drinkName}
manufacturer={manufacturer}
selectedDrinkList={selectedDrinkList}
/>
))}
))} */}
</DrinkList>
<CompleteButton width="100%" height="56px" disabled={selectedDrinkList.length < 2}>
선택 완료
Expand Down

0 comments on commit 627c1b3

Please sign in to comment.