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} />