A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: ensure handles are always forced to lowercase during dashboard auth

Trezy cfb85a4f 2c623b70

+1 -1
+1 -1
web/src/components/login-form.tsx
··· 28 28 setLoading(true) 29 29 setError(null) 30 30 try { 31 - await login(handle.trim()) 31 + await login(handle.trim().toLowerCase()) 32 32 } catch (e: unknown) { 33 33 setError(e instanceof Error ? e.message : "Login failed") 34 34 setLoading(false)