summaryrefslogtreecommitdiff
path: root/src-migrate/modules/cart/components/Summary.tsx
diff options
context:
space:
mode:
authorMiqdad <ahmadmiqdad27@gmail.com>2025-06-11 14:00:19 +0700
committerMiqdad <ahmadmiqdad27@gmail.com>2025-06-11 14:00:19 +0700
commit65cc2af8ba7bf6ced66572cdec779bef8cace564 (patch)
tree4ca7e0ee59da9b61a2999d116bb8ab28ff675472 /src-migrate/modules/cart/components/Summary.tsx
parent54636b53685422d495adce95b491f7b10585cb5c (diff)
parent5669295b8cff1a9c9e559dd263599123a2ad6e92 (diff)
Merge branch 'new-release' of https://bitbucket.org/altafixco/next-indoteknik into biteship-merge
Diffstat (limited to 'src-migrate/modules/cart/components/Summary.tsx')
-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>