summaryrefslogtreecommitdiff
path: root/src-migrate/modules/cart/components
diff options
context:
space:
mode:
authorMiqdad <ahmadmiqdad27@gmail.com>2025-06-04 10:27:02 +0700
committerMiqdad <ahmadmiqdad27@gmail.com>2025-06-04 10:27:02 +0700
commit11ee2946884ddac60947761a04f3dda295781ec5 (patch)
tree875da186c8eea4ae2f9755b1f05d591f94b1dc81 /src-migrate/modules/cart/components
parent69ca10032089ca3a73b201fd69df4398e8242b74 (diff)
<miqdad> fix cart tax
Diffstat (limited to 'src-migrate/modules/cart/components')
-rw-r--r--src-migrate/modules/cart/components/Summary.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src-migrate/modules/cart/components/Summary.tsx b/src-migrate/modules/cart/components/Summary.tsx
index 68db6323..312160fb 100644
--- a/src-migrate/modules/cart/components/Summary.tsx
+++ b/src-migrate/modules/cart/components/Summary.tsx
@@ -197,12 +197,12 @@ const CartSummary = ({
<div className={style.divider} />
- <Skeleton isLoaded={isLoaded}>
+ <Skeleton isLoaded={isLoaded} className={style.line}>
<span className={clsxm(style.label, style.grandTotal)}>
Grand Total
</span>
- <span className={clsxm(style.value, style.grandTotalValue)}>
- Rp {formatCurrency(displayGrandTotal)}
+ <span className={style.value}>
+ Rp {formatCurrency(grandTotal || 0)}
</span>
</Skeleton>
</div>