diff --git a/packages/core/useScroll/index.ts b/packages/core/useScroll/index.ts index 88ddc72f3c5..ca212dc024a 100644 --- a/packages/core/useScroll/index.ts +++ b/packages/core/useScroll/index.ts @@ -189,7 +189,7 @@ export function useScroll( useEventListener( element, 'scroll', - throttle ? useThrottleFn(onScrollHandler, throttle) : onScrollHandler, + throttle ? useThrottleFn(onScrollHandler, throttle, true, false) : onScrollHandler, eventListenerOptions, )