From 3acf4c268a795da5a5a870b9fdff948854d8affe Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 15:17:43 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index e6b77ae..eaefdf9 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -46,8 +46,7 @@ function ProductDetailContent({ name={product.name} description={product.description || ""} price={product.price || ""} - image={product.imageSrc || ""} - imageAlt={product.imageAlt || product.name} + images={[{ src: product.imageSrc || "", alt: product.imageAlt || product.name }]} onAddToCart={handleAddToCart} />