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
Describe the issue
Currently, if you run npm start and just leave it running with devtools turned on, you will see two issues. First, the known event.sender.send issue. Secondly, there's an issue that crops up after a while being idle:
[Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to make the page more responsive.
Screenshot
To Reproduce
Steps to reproduce the behavior:
npm start
Click on 'view` and toggle devtools
Switch between the calendar views
See error
Expected behavior
The listeners should be passive. This not only deals with the problem but also can improve performance to some degree.
Environment
Node/npm version: 23.6.1 / 11.1.0
OS: MacOS 15.3.1
TTL version: main
The text was updated successfully, but these errors were encountered:
Describe the issue
Currently, if you run
npm start
and just leave it running with devtools turned on, you will see two issues. First, the known event.sender.send issue. Secondly, there's an issue that crops up after a while being idle:[Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to make the page more responsive.
Screenshot

To Reproduce
Steps to reproduce the behavior:
npm start
Expected behavior
The listeners should be passive. This not only deals with the problem but also can improve performance to some degree.
Environment
The text was updated successfully, but these errors were encountered: