diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-06-04 10:27:02 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-06-04 10:27:02 +0700 |
| commit | 11ee2946884ddac60947761a04f3dda295781ec5 (patch) | |
| tree | 875da186c8eea4ae2f9755b1f05d591f94b1dc81 /src-migrate/modules/cart/components | |
| parent | 69ca10032089ca3a73b201fd69df4398e8242b74 (diff) | |
<miqdad> fix cart tax
Diffstat (limited to 'src-migrate/modules/cart/components')
| -rw-r--r-- | src-migrate/modules/cart/components/Summary.tsx | 6 |
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> |
