We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a6424 commit a19b523Copy full SHA for a19b523
packages/authenticator/amplify_authenticator/lib/src/blocs/auth/auth_bloc.dart
@@ -544,7 +544,8 @@ class StateMachineBloc
544
}
545
546
Future<UnauthenticatedState> _handleMfaSetupSelection(
547
- SignInResult result,) async {
+ SignInResult result,
548
+ ) async {
549
final allowedMfaTypes = result.nextStep.allowedMfaTypes;
550
551
if (allowedMfaTypes == null) {
@@ -558,7 +559,8 @@ class StateMachineBloc
558
559
560
if (mfaTypesForSetup.length != 1) {
561
return ContinueSignInWithMfaSetupSelection(
- allowedMfaTypes: allowedMfaTypes,);
562
+ allowedMfaTypes: allowedMfaTypes,
563
+ );
564
565
566
final mfaType = mfaTypesForSetup.first;
0 commit comments