Skip to content

Commit c9a6424

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

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

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

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

550550
if (allowedMfaTypes == null) {
@@ -558,7 +558,7 @@ class StateMachineBloc
558558

559559
if (mfaTypesForSetup.length != 1) {
560560
return ContinueSignInWithMfaSetupSelection(
561-
allowedMfaTypes: allowedMfaTypes);
561+
allowedMfaTypes: allowedMfaTypes,);
562562
}
563563

564564
final mfaType = mfaTypesForSetup.first;

packages/authenticator/amplify_authenticator/lib/src/widgets/form.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ class ContinueSignInWithEmailMfaSetupForm extends AuthenticatorForm {
679679
super.key,
680680
}) : super._(
681681
fields: [
682-
EmailSetupFormField.email(),
682+
const EmailSetupFormField.email(),
683683
],
684684
actions: const [
685685
ContinueSignInWithEmailMfaSetupButton(),

0 commit comments

Comments
 (0)