diff --git a/components/cart/edit-item-quantity-button.tsx b/components/cart/edit-item-quantity-button.tsx index fe6d899d1..974246aa2 100644 --- a/components/cart/edit-item-quantity-button.tsx +++ b/components/cart/edit-item-quantity-button.tsx @@ -52,9 +52,9 @@ export default function EditItemQuantityButton({ {isPending ? ( ) : type === 'plus' ? ( - + ) : ( - + )} ); diff --git a/components/cart/modal.tsx b/components/cart/modal.tsx index 1e34512bb..de11776c3 100644 --- a/components/cart/modal.tsx +++ b/components/cart/modal.tsx @@ -87,13 +87,13 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU {cart.lines.length === 0 ? ( -
+
-

Your cart is empty.

+

Your cart is empty.

) : ( -
-
    +
    +
      {cart.lines.map((item, i) => { const merchandiseSearchParams = {} as MerchandiseSearchParams; @@ -114,7 +114,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU data-testid="cart-item" className="flex w-full flex-col border-b border-black/[8%] dark:border-dark-gray-4" > -
      +
      @@ -125,7 +125,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU >
      {
      -
      +
      {item.merchandise.product.title} @@ -150,13 +150,13 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU ) : null}
      -
      +
      -
      +

      {item.quantity} @@ -173,7 +173,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU

      Taxes

      @@ -185,7 +185,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU

      Total

      @@ -193,7 +193,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU
      Proceed to Checkout diff --git a/components/icons/cart.tsx b/components/icons/cart.tsx index 648430b5d..e76b5b961 100644 --- a/components/icons/cart.tsx +++ b/components/icons/cart.tsx @@ -9,7 +9,7 @@ export default function CartIcon({ quantity?: number; }) { return ( -
      +
      diff --git a/components/icons/shopping-cart.tsx b/components/icons/shopping-cart.tsx index e5fc010e4..d5c220068 100644 --- a/components/icons/shopping-cart.tsx +++ b/components/icons/shopping-cart.tsx @@ -1,4 +1,4 @@ -export default function ShoppingCartIcon({ className }: { className?: string }) { +export default function ShoppingCartIcon() { return (