From 6d159e2757ce2f37b55622ef6ea9b7e67fc8ff70 Mon Sep 17 00:00:00 2001 From: ihmcsm <6415186+ihmcsm@users.noreply.github.com> Date: Fri, 14 Aug 2026 23:21:48 +1000 Subject: [PATCH] Update login_form.dart --- mobile/lib/widgets/forms/login/login_form.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/widgets/forms/login/login_form.dart b/mobile/lib/widgets/forms/login/login_form.dart index 303d2b875f..a56f67b7ca 100644 --- a/mobile/lib/widgets/forms/login/login_form.dart +++ b/mobile/lib/widgets/forms/login/login_form.dart @@ -76,6 +76,8 @@ class LoginForm extends HookConsumerWidget { final warningMessage = useState(null); final loginFormKey = GlobalKey(); final ValueNotifier serverEndpoint = useState(null); + final SmartDashesType smartDashesType; + final SmartQuotesType smartQuotesType; Future checkVersionMismatch() async { try { @@ -508,8 +510,6 @@ class LoginForm extends HookConsumerWidget { focusNode: passwordFocusNode, smartDashesType: SmartDashesType.disabled, smartQuotesType: SmartQuotesType.disabled, - autocorrect: false, - enableSuggestions: false, label: context.t.password, hintText: context.t.login_form_password_hint, keyboardAction: TextInputAction.go,