Skip to content

Commit

Permalink
reduce error popups for unexpected errors (#637)
Browse files Browse the repository at this point in the history
- temporary fix; will revisit as part of an overall error handling overhaul
  • Loading branch information
sei-aschlackman authored Jan 5, 2024
1 parent 76856b9 commit 115c037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/error/error.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class ErrorService implements ErrorHandler {
'The Identity Server could not be reached for user authentication.'
);
} else {
messageService.displayMessage('Error', err.rejection.message);
console.log(err.rejection.message);
}
} else {
console.log(err);
Expand Down

0 comments on commit 115c037

Please sign in to comment.