fix: remove unused prop on WaitingLobby
This commit is contained in:
parent
a302992c6a
commit
ed3bba242e
2 changed files with 1 additions and 2 deletions
|
@ -147,7 +147,7 @@
|
|||
on:dismiss-error={() => (error = '')}
|
||||
/>
|
||||
{:else if gameState === 'waiting'}
|
||||
<WaitingLobby {username} {gameId} {host} {socket} {players} />
|
||||
<WaitingLobby {username} {host} {socket} {players} />
|
||||
{:else if gameState === 'waitingForWord'}
|
||||
<Card>
|
||||
<p>Waiting for a word to be picked...</p>
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
|
||||
export let players: Player[];
|
||||
export let username: string;
|
||||
export let gameId: string;
|
||||
export let host: boolean;
|
||||
export let socket: Socket<ServerToClientEvents, ClientToServerEvents>;
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue