summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 3c2b8a09..73040425 100644
--- a/src/lib/checkout/components/Checkout.jsx
+++ b/src/lib/checkout/components/Checkout.jsx
@@ -245,7 +245,6 @@ const Checkout = () => {
setTotalWeight(cartCheckout?.totalWeight.g);
setHasFlashSale(cartCheckout?.products[0]?.hasFlashsale ? cartCheckout.products[0].hasFlashsale : false);
}, [cartCheckout]);
-
useEffect(() => {
setCheckoutValidation(false);
@@ -1392,9 +1391,6 @@ const Checkout = () => {
<div>Grand Total</div>
<div className='font-semibold text-gray_r-12'>
{currencyFormat(grandTotal)}
- {currencyFormat(
- cartCheckout?.grandTotal + finalShippingAmt
- )}
</div>
</div>
)}