From 12a19c9ce647fa468dd6efdb2de9658edfeababc Mon Sep 17 00:00:00 2001 From: ihmcsm <6415186+ihmcsm@users.noreply.github.com> Date: Fri, 14 Aug 2026 23:06:49 +1000 Subject: [PATCH] Disable smart dashes and quotes in password input --- mobile/lib/widgets/forms/login/login_form.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mobile/lib/widgets/forms/login/login_form.dart b/mobile/lib/widgets/forms/login/login_form.dart index 5185c5c318..303d2b875f 100644 --- a/mobile/lib/widgets/forms/login/login_form.dart +++ b/mobile/lib/widgets/forms/login/login_form.dart @@ -506,6 +506,10 @@ class LoginForm extends HookConsumerWidget { ImmichPasswordInput( controller: passwordController, 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,