[SHOPTIME-5452] test commit 2

This commit is contained in:
jiwon93.son
2025-09-24 17:00:59 +09:00
parent 6ba01d5d83
commit a04d2ed79f
2 changed files with 5 additions and 1 deletions

View File

@@ -94,6 +94,7 @@ export default function MobileSendPopUp({
shopByMobileLogRef, shopByMobileLogRef,
spotlightId, spotlightId,
patncNm, patncNm,
panelInfo,
}) { }) {
const dispatch = useDispatch(); const dispatch = useDispatch();
const deviceInfo = useSelector((state) => state.device.deviceInfo); const deviceInfo = useSelector((state) => state.device.deviceInfo);
@@ -494,7 +495,9 @@ export default function MobileSendPopUp({
const getSmsErrorMsg = useMemo(() => { const getSmsErrorMsg = useMemo(() => {
// const SMS_ERROR_502 = $L("The event information has not been registered"); // const SMS_ERROR_502 = $L("The event information has not been registered");
const SMS_ERROR_502 = <pre>${JSON.stringify(tempParams, null, 2)}</pre>; const SMS_ERROR_502 = (
<pre>${JSON.stringify({ tempParams, panelInfo }, null, 2)}</pre>
);
const SMS_ERROR_903 = $L("You have exceeded the daily text limit."); const SMS_ERROR_903 = $L("You have exceeded the daily text limit.");
const SMS_ERROR_904 = $L( const SMS_ERROR_904 = $L(
"You have exceeded the text limit for this product." "You have exceeded the text limit for this product."

View File

@@ -523,6 +523,7 @@ export default function DetailPanel({ panelInfo, isOnTop, spotlightId }) {
open={popupVisible} open={popupVisible}
onClose={handleSMSonClose} onClose={handleSMSonClose}
title={$L("Send a purchase link for this item via SMS")} title={$L("Send a purchase link for this item via SMS")}
panelInfo={panelInfo}
subTitle={mobileSendPopUpSubtitle} subTitle={mobileSendPopUpSubtitle}
patncNm={productData?.patncNm} patncNm={productData?.patncNm}
productImg={mobileSendPopUpProductImg} productImg={mobileSendPopUpProductImg}