Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(deriv_auth): rename inavalid to invalid in auth state handler #490

Merged
merged 1 commit into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ base class AuthErrorStateHandler {
}

/// User is trying to authenticate from an unsupported residence.
void onInavlidResidence(DerivAuthErrorState state) {
void onInvalidResidence(DerivAuthErrorState state) {
showErrorDialog(
context: context,
errorMessage: context.derivAuthLocalization.informInvalidResidence,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void authErrorStateMapper({
authErrorStateHandler.onFailedAuthorization(authErrorState);
return;
case AuthErrorType.invalidResidence:
authErrorStateHandler.onInavlidResidence(authErrorState);
authErrorStateHandler.onInvalidResidence(authErrorState);
return;
case AuthErrorType.expiredAccount:
authErrorStateHandler.onExpiredAccount(authErrorState);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ final class MockAuthErrorStateHandler extends AuthErrorStateHandler {
}

@override
void onInavlidResidence(DerivAuthErrorState errorState) {
void onInvalidResidence(DerivAuthErrorState errorState) {
lastHandledError = errorState;
}

Expand Down
Loading