⚠️ Issue Summary:
In the browser console, the following performance warning is triggered on every page flip when using the component from the react-pageflip library:
"
[Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
This warning indicates that react-pageflip is attaching touchstart or touchmove event listeners without the { passive: true } option, which can negatively impact scroll performance on touch devices (like phones and tablets). "
so do something
In the browser console, the following performance warning is triggered on every page flip when using the component from the react-pageflip library:
"
[Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
This warning indicates that react-pageflip is attaching touchstart or touchmove event listeners without the { passive: true } option, which can negatively impact scroll performance on touch devices (like phones and tablets). "
so do something