summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/checkout/components/Checkout.jsx4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/checkout/components/Checkout.jsx b/src/lib/checkout/components/Checkout.jsx
index f640299a..081ad9a4 100644
--- a/src/lib/checkout/components/Checkout.jsx
+++ b/src/lib/checkout/components/Checkout.jsx
@@ -246,7 +246,6 @@ const Checkout = () => {
const hasFlashSale = cartCheckout?.products.some(product => product.hasFlashsale);
setHasFlashSale(hasFlashSale);
}, [cartCheckout]);
-
useEffect(() => {
setCheckoutValidation(false);
@@ -1393,9 +1392,6 @@ const Checkout = () => {
<div>Grand Total</div>
<div className='font-semibold text-gray_r-12'>
{currencyFormat(grandTotal)}
- {currencyFormat(
- cartCheckout?.grandTotal + finalShippingAmt
- )}
</div>
</div>
)}