[wip] so close; check the ws messages

This commit is contained in:
2025-08-30 18:24:08 -04:00
parent 782dd738cc
commit 01a12ec58a
11 changed files with 139 additions and 88 deletions

View File

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