If you're like me, you love the feeling of having a clean console without any errors or warnings. But, like me, I'm sure you've already encountered this warning message: [Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event.
This message simply tells us that some listener added to a touchstart event isn't passif, which means that it's callback function is able to ...
// Before any third party import that causes issues
import { passiveSupport } from 'passive-events-support/src/utils';
passiveSupport({
events: 'touchstart', // or any other event tyoes
});