diff --git a/components/cart/modal.tsx b/components/cart/modal.tsx
index 670070f06..0b3dc4352 100644
--- a/components/cart/modal.tsx
+++ b/components/cart/modal.tsx
@@ -93,7 +93,7 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU
) : (
-
+
{cart.lines.map((item, i) => {
const merchandiseSearchParams = {} as MerchandiseSearchParams;
@@ -109,40 +109,46 @@ export default function CartModal({ cart, cartIdUpdated }: { cart: Cart; cartIdU
);
return (
- -
-
-
-
-
+
-
+
-
-
- {item.merchandise.product.title}
-
- {item.merchandise.title !== DEFAULT_OPTION ? (
-
- {item.merchandise.title}
-
- ) : null}
-
+
+
+ {item.merchandise.product.title}
+
+ {item.merchandise.title !== DEFAULT_OPTION ? (
+
+ {item.merchandise.title}
+
+ ) : null}
+
+
-
+
);
})}