From fb4f54dd029f7ffa24f771d4c7420c814e24bb6d Mon Sep 17 00:00:00 2001 From: Tyler-Larkin Date: Tue, 7 Jan 2025 15:38:16 -0800 Subject: [PATCH] chore(authenticator): TEST --- .../lib/src/widgets/form_fields/sign_in_form_field.dart | 1 + 1 file changed, 1 insertion(+) 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..6da34e9f68 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,6 +159,7 @@ class _SignInTextFieldState extends _SignInFormFieldState return (v) => state.username = v; case SignInField.password: return (v) => state.password = v; + //This is a Test PR default: return super.onChanged; }