extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.

Fix Current Games showing waiting games

Changed filter from 'status != completed' to 'status === active'.
This prevents games waiting for players from appearing in Current Games.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>

+1 -1
+1 -1
src/routes/+page.svelte
··· 113 113 // Split games by status 114 114 const currentGames = $derived( 115 115 (data.games || []) 116 - .filter((g) => g.status != 'completed') 116 + .filter((g) => g.status === 'active') 117 117 .filter((g) => !showMyGamesOnly || isMyGame(g)) 118 118 .filter((g) => !showMyTurnOnly || isMyTurn(g)) 119 119 .sort((a, b) => new Date(b.updated_at).getTime() - new Date(a.updated_at).getTime())