Google OAuth

This commit is contained in:
Hillel Coren 2020-05-11 19:50:05 +03:00
parent e34a8cc55b
commit d5afe1725d
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ Middleware<AppState> _createOAuthSignUpRequest(AuthRepository repository) {
store.dispatch(
LoadAccountSuccess(completer: action.completer, loginResponse: data));
}).catchError((Object error) {
print('Signup error: $error');
print('OAuth signup error: $error');
if (action.completer != null) {
action.completer.completeError(error);
}