ResizeObserver loop limit exceeded

Hi, we see many ResizeObserver loop limit exceeded errors in sentry, but there is no useful information to debug what is going on. I found a similar stack overflow question for Rollbar, I am wondering if it’s the same problem and should i ignore it forever? https://stackoverflow.com/questions/49384120/resizeobserver-loop-limit-exceeded

Here is one sentry issue example:

https://sentry.io/organizations/two-sigma/issues/1386792105/?project=1815774&query=is%3Aunresolved

1 Like

I’m facing the same problem, any help?

Yes, I would ignore this error on clientside in the SDK, this only happens in specific browser versions.

Ignoring is not an option for us, as it shows the crash report dialog to our users. And we don’t have any debug information. Is there a solution for this one already? Best,

I couldn’t find a solution, but we ended up adding it to the ignoreErrors list:

Sentry.init({
   ...
   ignoreErrors: ['ResizeObserver loop limit exceeded'],
 })

Hope it helps.

2 Likes