diff --git a/apps/client/src/app/page.tsx b/apps/client/src/app/page.tsx index 4dd8077..78a2e27 100644 --- a/apps/client/src/app/page.tsx +++ b/apps/client/src/app/page.tsx @@ -14,7 +14,7 @@ export default async function Home() { const runningGameQuery = await getRunningGame({ session }); if (runningGameQuery) { - runningGame = runningGameQuery.game; + runningGame = runningGameQuery.game as Game; } }