[wip] so close; check the ws messages
This commit is contained in:
@@ -79,9 +79,7 @@ export default (props: { tableKey: string }) => {
|
||||
<Player
|
||||
playerKey={player}
|
||||
style={{
|
||||
transform: `translate(0, ${
|
||||
verticalOffset() * 150
|
||||
}vh)`,
|
||||
transform: `translate(0, ${verticalOffset() * 150}vh)`,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
@@ -114,9 +112,7 @@ export default (props: { tableKey: string }) => {
|
||||
<div class="absolute tc mt-8 flex gap-4">
|
||||
<select>
|
||||
<For each={Object.entries(games)}>
|
||||
{([gameId, game]) => (
|
||||
<option value={gameId}>{game.title}</option>
|
||||
)}
|
||||
{([gameId, game]) => <option value={gameId}>{gameId}</option>}
|
||||
</For>
|
||||
</select>
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user