fix: Add card unique key

This commit is contained in:
2026-01-22 10:40:27 -05:00
parent 8c53871b4e
commit 708dd3adeb

View File

@@ -11,6 +11,7 @@ const ProductCards = ({ products } : ProductCardProps) => {
<>
{ products.map((product) => {
return (
<div key={product.id}>
<Card
image={product.image}
name={product.name}
@@ -18,6 +19,7 @@ const ProductCards = ({ products } : ProductCardProps) => {
description={ product.description}
cardId={product.id}
/>
</div>
)
}) }
</>