1
0

Pass ws to MediaControl

Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
This commit is contained in:
James Ketrenos 2022-03-08 16:37:26 -08:00
parent fa4f9751b6
commit 5499a66fd3

View File

@ -301,7 +301,7 @@ const Players = ({ table }) => {
onClick={() => { inLobby && selectable && toggleSelected(color) }}
key={`player-${color}`}>
<PlayerColor color={color}/>{name}
<MediaControl color={color} game={table.game}/>
<MediaControl color={color} ws={table.ws} game={table.game}/>
</div>
));
}