From 589e379dc3f8b44ca92f7bd921175f2418bb3eae Mon Sep 17 00:00:00 2001 From: jessy-david-dev Date: Sat, 11 Apr 2026 15:57:35 +0200 Subject: [PATCH] fix(daily): remove invalid phase comparison causing TS build error --- app/components/DailyScreen.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/DailyScreen.tsx b/app/components/DailyScreen.tsx index 230d1ad..d4ffb9f 100644 --- a/app/components/DailyScreen.tsx +++ b/app/components/DailyScreen.tsx @@ -46,7 +46,7 @@ export function DailyScreen({ onBack, currentUserId }: { onBack: () => void; cur ); // Erreur initiale - if (game.loadError && game.phase === "loading") return ( + if (game.loadError) return (

{game.loadError}