Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
fix(header): fix escaping from token dialog
Browse files Browse the repository at this point in the history
Catch unhandled rejection.
  • Loading branch information
albertosantini committed Dec 27, 2016
1 parent 9a8d49f commit 6c8c786
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/client/app/components/header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@
}, err => {
toastService.show(err);
});
})
.catch(err => {
if (err) {
toastService.show(err);
}
});
}

Expand Down

0 comments on commit 6c8c786

Please sign in to comment.