From 79d90b75c457133925d74c666fd4688e6b88ea70 Mon Sep 17 00:00:00 2001
From: jessy-david-dev
Date: Mon, 13 Apr 2026 00:20:17 +0200
Subject: [PATCH] fix(multi): use startGame for next round button in waiting
phase
---
app/components/GameScreen.tsx | 4 +++-
app/components/ScreenRouter.tsx | 1 +
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/app/components/GameScreen.tsx b/app/components/GameScreen.tsx
index 31e95fa..8a697a0 100644
--- a/app/components/GameScreen.tsx
+++ b/app/components/GameScreen.tsx
@@ -23,6 +23,7 @@ type GameScreenProps = {
canGoBack: boolean;
onRetry: () => void;
onNextRound: () => void;
+ onStartGame: () => void;
onResetGame: () => void;
onSurrender: () => void;
};
@@ -44,6 +45,7 @@ export function GameScreen({
canGoBack,
onRetry,
onNextRound,
+ onStartGame,
onResetGame,
onSurrender,
}: GameScreenProps) {
@@ -201,7 +203,7 @@ export function GameScreen({
{isHost && (
-