diff --git a/client/src/components/cart/CartDrawer.jsx b/client/src/components/cart/CartDrawer.jsx index babfce8..9bf903f 100644 --- a/client/src/components/cart/CartDrawer.jsx +++ b/client/src/components/cart/CartDrawer.jsx @@ -52,7 +52,13 @@ const CartDrawer = () => { return (
${(item.price * item.quantity).toFixed(2)}
+ cartItems.map((item) => { + const imageUrl = typeof item.image === 'string' ? item.image.trim() : ''; + const hasImage = Boolean(imageUrl); + + return ( +${(item.price * item.quantity).toFixed(2)}
+{item.description}
- Discover the most loved dishes from our kitchen at{' '} - {selectedOutlet.name}. -
-- Experience the rich heritage of Indonesian cuisine. Whether you want a cozy dine-in experience or quick - delivery to your doorstep, we serve happiness. + Experience the rich heritage of Indonesian cuisine with our exquisite menu selection.
-Select items to add to your table order.