Skip to content

Commit

Permalink
fix: don't show error on success
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Nov 26, 2024
1 parent 770fb87 commit d0b6f02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ class _AtOnboardingGenerateScreenState
await _showAlertDialog(
AtOnboardingLocalizations.current.error_authenticated_failed,
);
} else {
} else if (authResponse != AtOnboardingResponseStatus.authSuccess) {
await showErrorDialog(
AtOnboardingLocalizations.current.msg_response_time_out,
);
Expand Down

0 comments on commit d0b6f02

Please sign in to comment.