diff --git a/com.twin.app.shoptime/src/components/MobileSend/MobileSendPopUp.jsx b/com.twin.app.shoptime/src/components/MobileSend/MobileSendPopUp.jsx index 0bfbde1e..2c48229a 100644 --- a/com.twin.app.shoptime/src/components/MobileSend/MobileSendPopUp.jsx +++ b/com.twin.app.shoptime/src/components/MobileSend/MobileSendPopUp.jsx @@ -94,6 +94,7 @@ export default function MobileSendPopUp({ shopByMobileLogRef, spotlightId, patncNm, + panelInfo, }) { const dispatch = useDispatch(); const deviceInfo = useSelector((state) => state.device.deviceInfo); @@ -494,7 +495,9 @@ export default function MobileSendPopUp({ const getSmsErrorMsg = useMemo(() => { // const SMS_ERROR_502 = $L("The event information has not been registered"); - const SMS_ERROR_502 =
${JSON.stringify(tempParams, null, 2)};
+ const SMS_ERROR_502 = (
+ ${JSON.stringify({ tempParams, panelInfo }, null, 2)}
+ );
const SMS_ERROR_903 = $L("You have exceeded the daily text limit.");
const SMS_ERROR_904 = $L(
"You have exceeded the text limit for this product."
diff --git a/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx b/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx
index 744e6850..f1001a50 100644
--- a/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx
+++ b/com.twin.app.shoptime/src/views/DetailPanel/DetailPanel.jsx
@@ -523,6 +523,7 @@ export default function DetailPanel({ panelInfo, isOnTop, spotlightId }) {
open={popupVisible}
onClose={handleSMSonClose}
title={$L("Send a purchase link for this item via SMS")}
+ panelInfo={panelInfo}
subTitle={mobileSendPopUpSubtitle}
patncNm={productData?.patncNm}
productImg={mobileSendPopUpProductImg}