Skip to content

Commit d9b5226

Browse files
numbpill3dclaude
andcommitted
fix: remove stale supabaseClient reference breaking registration
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6c22b5b commit d9b5226

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ class PortalRoom {
432432
const confirmPassword = document.getElementById('reg-confirm-password')?.value;
433433

434434
// Validation
435-
if ((supabaseClient && !email) || !username || !password) {
435+
if (!email || !username || !password) {
436436
this.showNotification('Please fill in all fields', 'error');
437437
return;
438438
}

0 commit comments

Comments
 (0)