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,