You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that we are on React 16, we should probably decide where to create "error boundaries" (https://reactjs.org/blog/2017/07/26/error-handling-in-react-16.html). Right now, thrown errors will now dismount the entire app if not caught. Should they be per-widget? per-page? per-component?
The text was updated successfully, but these errors were encountered:
A prescriptive approach is probably best. Error boundaries can actually be dangerous otherwise - allowing parts of the app to run while other parts are inactive can lead to cases we simply don't expect and aren't set up for.
The first applied error boundary, and a generic, reusable boundary component, are in #779.
Now that we are on React 16, we should probably decide where to create "error boundaries" (https://reactjs.org/blog/2017/07/26/error-handling-in-react-16.html). Right now, thrown errors will now dismount the entire app if not caught. Should they be per-widget? per-page? per-component?
The text was updated successfully, but these errors were encountered: