You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got this error on production build website
Sentry stack trace show me that the error is from this package
I don't know why element is null, maybe we have to check
functionisVisible(el: Element,view: Element|null): boolean{if(!el)returnfalse;//<-- maybe we add this to prevent errorconstelRect=el.getBoundingClientRect();if(!view)returnelRect.top>=0&&elRect.bottom<=window.innerHeight;constviewRect=view.getBoundingClientRect();returnelRect.top>=viewRect.top&&elRect.bottom<=viewRect.bottom;}
The text was updated successfully, but these errors were encountered:
I got this error on production build website
Sentry stack trace show me that the error is from this package
I don't know why element is null, maybe we have to check
The text was updated successfully, but these errors were encountered: