Dom7.esm.js [Violation]Added non-passive event listener to a scroll-blocking 'wheel' event

I’m using swiper slider, and any time when it shows on web page i get this message in console
[Violation]Added non-passive event listener to a scroll-blocking ‘wheel’ event. Consider marking event handler as ‘passive’ to make the page more responsive.
it links to dom7.esm.js:395 where
el.addEventListener(event, handleEvent, capture);
how to fix it ?

<Swiper
mousewheel={true}
direction={‘horizontal’}
slidesPerView={1}
spaceBetween={0}
loop={true}
pagination={{
clickable: true,
}}
navigation={true}
modules={[Mousewheel, Pagination, Navigation]}
className={styles.swiper}
>