From 79fd3d83dd5da68e7e34be729ba8110ead5fc867 Mon Sep 17 00:00:00 2001 From: Rye Date: Fri, 6 Mar 2026 17:21:51 +0100 Subject: [PATCH] disable spellcheck and auto correct on login items (username and homeserver address) --- src/app/pages/auth/ServerPicker.tsx | 5 +++++ src/app/pages/auth/login/PasswordLoginForm.tsx | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/app/pages/auth/ServerPicker.tsx b/src/app/pages/auth/ServerPicker.tsx index a2a78106cd..90c802f151 100644 --- a/src/app/pages/auth/ServerPicker.tsx +++ b/src/app/pages/auth/ServerPicker.tsx @@ -89,6 +89,11 @@ export function ServerPicker({ size="500" readOnly={!allowCustomServer} onClick={allowCustomServer ? undefined : handleOpenServerMenu} + // disable auto-capitalization, which is usually undesirable for server name input. + autoCapitalize="off" + // disable spell-check and auto-correction + spellCheck={false} + autoCorrect="off" after={ serverList.length === 0 || (serverList.length === 1 && !allowCustomServer) ? undefined : ( } /> {loginState.status === AsyncStatus.Error && (