diff --git a/src/pages/Cart.tsx b/src/pages/Cart.tsx index 9dd2f42..15a6810 100644 --- a/src/pages/Cart.tsx +++ b/src/pages/Cart.tsx @@ -90,7 +90,7 @@ export default function CartPage() { - \${(item.price * item.quantity).toFixed(2)} + ${(item.price * item.quantity).toFixed(2)} @@ -108,22 +108,22 @@ export default function CartPage() {
Subtotal - \${total.toFixed(2)} + ${total.toFixed(2)}
Shipping - - {shipping === 0 ? "Free" : `\$\${shipping.toFixed(2)}`} + + {shipping === 0 ? "Free" : `$${shipping.toFixed(2)}`}
Tax - \${tax.toFixed(2)} + ${tax.toFixed(2)}
{couponApplied && (
Discount (10%) - -\${discount.toFixed(2)} + -${discount.toFixed(2)}
)}
@@ -132,7 +132,7 @@ export default function CartPage() {
Total - \${grandTotal.toFixed(2)} + ${grandTotal.toFixed(2)}
{/* Coupon */} @@ -153,7 +153,7 @@ export default function CartPage() { {shipping > 0 && (

- Add \${(100 - total).toFixed(2)} more for free shipping + Add ${(100 - total).toFixed(2)} more for free shipping

)}