- 다운로드 이후 toast 노출.
This commit is contained in:
junghoon86.park
2025-11-21 17:22:00 +09:00
parent 6e9ebcfe3a
commit 1f7020b28b

View File

@@ -302,6 +302,7 @@ export default function ProductAllSection({
cpnSnoAll: couponCodes, cpnSnoAll: couponCodes,
}) })
); );
dispatch(showToast({message : "Your coupon download is complete."}));
} }
}, [dispatch, selectedCoupon, userNumber, couponCodes]); }, [dispatch, selectedCoupon, userNumber, couponCodes]);
@@ -366,6 +367,7 @@ export default function ProductAllSection({
dispatch( dispatch(
getProductCouponDownload({ mbrNo: userNumber, cpnSno: cpnSno }) getProductCouponDownload({ mbrNo: userNumber, cpnSno: cpnSno })
); );
dispatch(showToast({message : "Your coupon download is complete."}));
}; };
return ( return (