File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/authenticator/amplify_authenticator/lib/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ class StateMachineBloc
544
544
}
545
545
546
546
Future <UnauthenticatedState > _handleMfaSetupSelection (
547
- SignInResult result) async {
547
+ SignInResult result, ) async {
548
548
final allowedMfaTypes = result.nextStep.allowedMfaTypes;
549
549
550
550
if (allowedMfaTypes == null ) {
@@ -558,7 +558,7 @@ class StateMachineBloc
558
558
559
559
if (mfaTypesForSetup.length != 1 ) {
560
560
return ContinueSignInWithMfaSetupSelection (
561
- allowedMfaTypes: allowedMfaTypes);
561
+ allowedMfaTypes: allowedMfaTypes, );
562
562
}
563
563
564
564
final mfaType = mfaTypesForSetup.first;
Original file line number Diff line number Diff line change @@ -679,7 +679,7 @@ class ContinueSignInWithEmailMfaSetupForm extends AuthenticatorForm {
679
679
super .key,
680
680
}) : super ._(
681
681
fields: [
682
- EmailSetupFormField .email (),
682
+ const EmailSetupFormField .email (),
683
683
],
684
684
actions: const [
685
685
ContinueSignInWithEmailMfaSetupButton (),
You can’t perform that action at this time.
0 commit comments