fix: remove unused prop on WaitingLobby

This commit is contained in:
Ashhhleyyy 2022-08-13 16:28:39 +01:00
parent a302992c6a
commit ed3bba242e
Signed by: ash
GPG key ID: 83B789081A0878FB
2 changed files with 1 additions and 2 deletions

View file

@ -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>

View file

@ -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>