···7474 // Helper to check if it's the current user's turn
7575 function isMyTurn(game: typeof data.games[0]): boolean {
7676 if (!data.session) return false;
7777+ // Can't be your turn if there are no moves yet (game hasn't started)
7878+ if (!game.action_count || game.action_count === 0) return false;
7779 const turn = getWhoseTurn(game);
7880 if (turn === 'black') {
7981 return game.player_one === data.session.did;