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.
2 parents c312a92 + 9d4198a commit f05a4b1Copy full SHA for f05a4b1
src/view/TabOverflowHook.tsx
@@ -33,7 +33,7 @@ export const useTabOverflow = (
33
34
React.useEffect(() => {
35
const instance = selfRef.current!;
36
- instance.addEventListener('wheel', onWheel);
+ instance.addEventListener('wheel', onWheel, { passive: false });
37
return () => {
38
instance.removeEventListener('wheel', onWheel);
39
}
0 commit comments