Unable to preventDefault inside passive event listener (Chrome console error)

Hello! I am sorry for the delay :slight_smile:

Have you seen this topic?

Using { passive: false } instead of false as the third argument in addEventListener may be enough. Your code looks minified, but (in minified form) it may be something like:

function u(e,t,n){window.addEventListener(e,t,n||!1)}

→

function u(e,t,n){window.addEventListener(e,t,{passive:n||!1})}