Hi,
I am using Sentry within Angular application, lately, I notice that Angular change detection is running in an endless loop !!! every few milliseconds.
Seems like that Sentry place a setInterval which triggered the change detection, I don’t know why it does it but if it does it, it must be outside of ngZone.
Did someone notice that? any solution?
I tried to put the initialization of Sentry outside of ngZone but it didn’t solve the problem.
The function notifyScopeListeners() from the scope.js file will eventually call the setTimeout() function, which then triggers another change detection cycle and then it ends in the infinite loop.