Skip to content

Commit

Permalink
chore: dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
khatruong2009 committed Oct 2, 2024
1 parent cf2da85 commit b329115
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ class StateMachineBloc
_emit(UnauthenticatedState.continueSignInWithEmailMfaSetup);
case AuthSignInStep.confirmSignInWithTotpMfaCode:
_emit(UnauthenticatedState.confirmSignInWithTotpMfaCode);
case AuthSignInStep.confirmSignInWithEmailMfaCode:
case AuthSignInStep.confirmSignInWithEmailMfaCode:
_notifyCodeSent(result.nextStep.codeDeliveryDetails?.destination);
_emit(UnauthenticatedState.confirmSignInWithEmailMfaCode);
case AuthSignInStep.resetPassword:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class AuthenticatorTitleLocalizationsEn
String get confirmSignInWithEmailMfaCode => 'Enter your one-time passcode';

@override
String get continueSignInWithEmailMfaSetup => 'Add Email for Two-Factor Authentication';
String get continueSignInWithEmailMfaSetup =>
'Add Email for Two-Factor Authentication';

@override
String get continueSignInWithMfaSetupSelection =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ class AuthenticatorScreen extends StatelessAuthenticatorComponent {
: this(key: key, step: AuthenticatorStep.continueSignInWithEmailMfaSetup);

const AuthenticatorScreen.continueSignInWithMfaSetupSelection({Key? key})
: this(key: key, step: AuthenticatorStep.continueSignInWithMfaSetupSelection);
: this(
key: key,
step: AuthenticatorStep.continueSignInWithMfaSetupSelection);

const AuthenticatorScreen.resetPassword({Key? key})
: this(key: key, step: AuthenticatorStep.resetPassword);
Expand Down

0 comments on commit b329115

Please sign in to comment.