From c10cb5b2b1bbbcd7b2d23f3ff32dffb9c0ed0dcc Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 8 Feb 2026 20:59:18 +0100 Subject: [PATCH] Update app/components/repas/menu-card.tsx --- app/components/repas/menu-card.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app/components/repas/menu-card.tsx b/app/components/repas/menu-card.tsx index a94d2bf..15ae578 100644 --- a/app/components/repas/menu-card.tsx +++ b/app/components/repas/menu-card.tsx @@ -40,14 +40,16 @@ export function DailyMenu({ meals }: { meals: Meal[] }) { {meals.length > 1 ? "Menus" : "Menu"} du jour - {meals.map((meal, mealIndex) => ( - - -
-
-
- - + {meals + .sort((a, b) => a.name.localeCompare(b.name)) + .map((meal, mealIndex) => ( + + +
+
+
+ + {meal.name}