We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f968c9e commit 406f011Copy full SHA for 406f011
src/FixedHolder/index.tsx
@@ -89,7 +89,7 @@ const FixedHolder = React.forwardRef<HTMLDivElement, FixedHeaderProps<any>>((pro
89
e.preventDefault();
90
}
91
92
- scrollRef.current?.addEventListener('wheel', onWheel);
+ scrollRef.current?.addEventListener('wheel', onWheel, { passive: false });
93
94
return () => {
95
scrollRef.current?.removeEventListener('wheel', onWheel);
0 commit comments