'Prevent Default' has no effect on the 'onWheel' event

Hi there, I'm trying to implement zooming with mousewheel on a component. This works fine, except for the fact that the whole page scrolls with it. The "prevent default" option ought to disable that behavior, but that option does not work for this event.

Calling 'preventDefault()' on a 'wheel' event from a listener registered as 'passive' was ignored. react-dom-18.2.0.js:51:314

Is there some way to work around this?