fix: resolve all typechecking errors across codebase

This commit is contained in:
10x Developer 2026-05-11 20:15:03 +02:00
parent 73beedee5f
commit 3f3123c5af
7 changed files with 45 additions and 61 deletions

View file

@ -54,7 +54,7 @@ const SetupScreen: React.FC = () => {
<h2>Setup a New Game</h2>
<div className="player-slots">
{gameState.players.map((player, index) => (
{gameState.players.map((player: Player, index: number) => (
<div key={player.id} className="player-slot">
<h3>👤 {index + 1}. {player.name}</h3>
</div>