Skip to content

Commit

Permalink
[Fix]LikeLion-at-DGU#27 - 입장료 정보 없을 시 - 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaem03 committed Oct 6, 2024
1 parent 8b4a232 commit add2b48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/common/BoothDetail/BoothDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const BoothDetail = ({ onClose, booth_id, boothInfo }) => {
)} ~ ${boothDetailData.end_time.slice(0, 5)}`}
{index === 3 && boothDetailData.entrace_fee > 0
? boothDetailData.entrace_fee
: null}
: "-"}
{index === 4 && boothDetailData.menus}
{index === 5 && boothDetailData.insta_id}
</S.DetailContext>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/booth/BoothPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ export const BoothPage = () => {
<S.BoothWrap>
<S.BoothName>{booth.name}</S.BoothName>
{booth.is_reservable && (
<S.reservabletag>Line Now</S.reservabletag>
<S.reservabletag>linenow</S.reservabletag>
)}
</S.BoothWrap>
<S.BoothWho>{booth.host}</S.BoothWho>
Expand Down Expand Up @@ -627,7 +627,7 @@ export const BoothPage = () => {
<S.BoothWrap>
<S.BoothName>{booth.name}</S.BoothName>
{booth.is_reservable && (
<S.reservabletag>Line Now</S.reservabletag>
<S.reservabletag>linenow</S.reservabletag>
)}
</S.BoothWrap>
<S.BoothWho>{booth.host}</S.BoothWho>
Expand Down

0 comments on commit add2b48

Please sign in to comment.