Login
Remember
Register
Ask a Question
In which scenarios error boundaries do not catch errors in ReactJS?
0
votes
asked
Nov 2, 2023
in
ReactJS
by
AdilsonLima
In which scenarios error boundaries do not catch errors in ReactJS?
reactjs-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 2, 2023
by
AdilsonLima
Below are the cases in which error boundaries doesn't work,
Inside Event handlers
Asynchronous code using
setTimeout or requestAnimationFrame
callbacks
During Server side rendering
When errors thrown in the error boundary code itself
...