From dea1b17d23b10dc85450b4061d05bc597d4b2371 Mon Sep 17 00:00:00 2001 From: Tyler-Larkin Date: Tue, 7 Jan 2025 15:03:29 -0800 Subject: [PATCH] Revert "chore(authenticator): Removed Linter Fix" This reverts commit d89adb9480cef7a7fbd9918526b80dd7239f810e. --- .../lib/src/widgets/form_fields/sign_in_form_field.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/authenticator/amplify_authenticator/lib/src/widgets/form_fields/sign_in_form_field.dart b/packages/authenticator/amplify_authenticator/lib/src/widgets/form_fields/sign_in_form_field.dart index d65618fa04..f7f941dbcf 100644 --- a/packages/authenticator/amplify_authenticator/lib/src/widgets/form_fields/sign_in_form_field.dart +++ b/packages/authenticator/amplify_authenticator/lib/src/widgets/form_fields/sign_in_form_field.dart @@ -159,8 +159,6 @@ class _SignInTextFieldState extends _SignInFormFieldState return (v) => state.username = v; case SignInField.password: return (v) => state.password = v; - default: - return super.onChanged; } }