Skip to content

Commit

Permalink
Fix: make text shorter
Browse files Browse the repository at this point in the history
  • Loading branch information
predict-woo committed Sep 26, 2023
1 parent c754315 commit aca2c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ModalPopup/ModalEvent2023FallItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ const ModalEvent2023FallItem = ({
eventMode !== "2023fall"
? [true, "이벤트 기간이 아닙니다"]
: itemInfo.stock <= 0
? [true, "매진된 상품은 구매할 수 없습니다"]
? [true, "매진된 상품입니다"]
: !event2023FallInfo || !isLogin
? [true, "로그인 후 구매가 가능합니다"]
: event2023FallInfo.creditAmount < itemInfo.price
? [true, "송편이 부족하여 구매할 수 없습니다"]
? [true, "송편이 부족합니다"]
: [false, "구매하기"],
[eventMode, event2023FallInfo, itemInfo]
);
Expand Down

0 comments on commit aca2c47

Please sign in to comment.