Anyone here used sentry for error reporting in rea...
# random
e
Anyone here used sentry for error reporting in reactjs? Will sentry catch error from API calls, timeout issues or errors from event handler? This is limitation of error boundary so instead of sentry should I go with react error boundary package which also handles event handler and API call failure on frontend? https://github.com/bvaughn/react-error-boundary
a
Yes we use Sentry along with this react-error-boundary package
e
so you mean to say what problem react-boundary package solves is not solved in sentry right?
a
I'm not sure I understand your question. This is how we use it.
e
Yes I got it how you are using but lets say there is some issue in API failure or some event handler issue that time sentry will capture or not ?? React in built error boundary does not capture those things
For that react-error-boundary package was introduced