Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-23 15:17:43 +00:00
parent 5227b349fb
commit 3acf4c268a

View File

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