From 762c1ef0c4485590c318ac2fa5a780109eecce64 Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Tue, 11 Jun 2024 00:56:29 +0200 Subject: [PATCH] drop comment --- client/src/components/landing_page.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/client/src/components/landing_page.tsx b/client/src/components/landing_page.tsx index 49410f3..720e1b6 100644 --- a/client/src/components/landing_page.tsx +++ b/client/src/components/landing_page.tsx @@ -82,17 +82,6 @@ function LandingPage() { let allTiles = lean4gameConfig.allGames.map((gameId) => { let q = useGetGameInfoQuery({game: `g/${gameId}`}) - - // if (q.isError) { - // if (q.error?.originalStatus === 404) { - // // Handle 404 error - // console.log('File not found'); - // } else { - // // Suppress additional console.error messages - // console.error(q.error); - // } - // } - return q.data?.tile })