From aca2c47e2de0468a5d96ac705738bb503448303b Mon Sep 17 00:00:00 2001 From: andyye <63383967+0ev@users.noreply.github.com> Date: Tue, 26 Sep 2023 22:15:49 +0900 Subject: [PATCH] Fix: make text shorter --- src/components/ModalPopup/ModalEvent2023FallItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ModalPopup/ModalEvent2023FallItem.tsx b/src/components/ModalPopup/ModalEvent2023FallItem.tsx index 2e87701c5..0f7ab0324 100644 --- a/src/components/ModalPopup/ModalEvent2023FallItem.tsx +++ b/src/components/ModalPopup/ModalEvent2023FallItem.tsx @@ -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] );