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 Enter key form submission in login modal

Changed from bind:value to oninput handler to properly support
form submission. The Input component doesn't support two-way
binding, so we need to use the oninput callback pattern.

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

+2 -1
+2 -1
src/lib/components/Header.svelte
··· 73 73 <h2>Login with @proto</h2> 74 74 <form onsubmit={(e) => { e.preventDefault(); login(); }}> 75 75 <Input 76 - bind:value={handle} 76 + value={handle} 77 + oninput={(e) => handle = e.currentTarget.value} 77 78 placeholder="your-handle.bsky.social" 78 79 disabled={isLoggingIn} 79 80 class="login-input"