Skip to content

Commit a19b523

Browse files
committed
chore: dart format
1 parent c9a6424 commit a19b523

File tree

1 file changed

+4
-2
lines changed
  • packages/authenticator/amplify_authenticator/lib/src/blocs/auth

1 file changed

+4
-2
lines changed

packages/authenticator/amplify_authenticator/lib/src/blocs/auth/auth_bloc.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,8 @@ class StateMachineBloc
544544
}
545545

546546
Future<UnauthenticatedState> _handleMfaSetupSelection(
547-
SignInResult result,) async {
547+
SignInResult result,
548+
) async {
548549
final allowedMfaTypes = result.nextStep.allowedMfaTypes;
549550

550551
if (allowedMfaTypes == null) {
@@ -558,7 +559,8 @@ class StateMachineBloc
558559

559560
if (mfaTypesForSetup.length != 1) {
560561
return ContinueSignInWithMfaSetupSelection(
561-
allowedMfaTypes: allowedMfaTypes,);
562+
allowedMfaTypes: allowedMfaTypes,
563+
);
562564
}
563565

564566
final mfaType = mfaTypesForSetup.first;

0 commit comments

Comments
 (0)