From 4ce5d92bbac530dcc740988800976bfdbedd194a Mon Sep 17 00:00:00 2001 From: Gilles Soulier Date: Mon, 25 May 2026 10:09:26 +0200 Subject: [PATCH] fix(shopping): accolade manquante dans le map des articles libres MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fermeture incorrecte du .map(s => { return (...) }) — le } de la fonction arrow était absent, causant une erreur TS1005 au build. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/pages/ShoppingPage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/ShoppingPage.tsx b/frontend/src/pages/ShoppingPage.tsx index e375865..242c028 100644 --- a/frontend/src/pages/ShoppingPage.tsx +++ b/frontend/src/pages/ShoppingPage.tsx @@ -681,7 +681,8 @@ export default function ShoppingPage() { onIncrement={() => incrementCustom(s.name)} /> - ))} + ) + })} {/* Produits du catalogue */} {filteredProducts.map(p => {