When you have a layout route with a child route that has an error boundary, the devtools will error the page when trying to add the outlet-route route class to a dom node when the classList is an ErrorBoundary. This results in the page loading, then immediately erroring.
Error:
Oops!
Cannot read properties of undefined (reading 'add')
TypeError: Cannot read properties of undefined (reading 'add')
I only ever see this with RenderErrorBoundary as the name of the fiber node. To be honest, I'm not sure where to dissect this further.
When you have a layout route with a child route that has an error boundary, the devtools will error the page when trying to add the
outlet-routeroute class to a dom node when theclassListis an ErrorBoundary. This results in the page loading, then immediately erroring.Error:
I only ever see this with
RenderErrorBoundaryas the name of the fiber node. To be honest, I'm not sure where to dissect this further.