Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(react): Do not suppress unhandled rejections in promises. (#4155)
When react components chain off promises (angular $q promises) for callbacks (`setState()`, etc), any thrown errors would be swallowed by $qProvider.errorOnUnhandledRejections(true) This change will cause more noise in the console, but I think this is a necessary change. When other kinds of rejections occur and spam the console, we should address these cases individually.
- Loading branch information