fix: resolve all typechecking errors across codebase
This commit is contained in:
parent
73beedee5f
commit
3f3123c5af
7 changed files with 45 additions and 61 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue