From 708dd3adebd1b4d3f9a8b651f014924216cacdc6 Mon Sep 17 00:00:00 2001 From: aserrador Date: Thu, 22 Jan 2026 10:40:27 -0500 Subject: [PATCH] fix: Add card unique key --- .../components/product_cards/ProductCards.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/pages/catalog/components/product_cards/ProductCards.tsx b/src/pages/catalog/components/product_cards/ProductCards.tsx index 775a1db..8bec579 100644 --- a/src/pages/catalog/components/product_cards/ProductCards.tsx +++ b/src/pages/catalog/components/product_cards/ProductCards.tsx @@ -11,13 +11,15 @@ const ProductCards = ({ products } : ProductCardProps) => { <> { products.map((product) => { return ( - +
+ +
) }) }