diff --git a/src/helpers/helpers.extras.ts b/src/helpers/helpers.extras.ts index ce05c32cf8e..754f6050483 100644 --- a/src/helpers/helpers.extras.ts +++ b/src/helpers/helpers.extras.ts @@ -32,7 +32,7 @@ export function throttled>( return function(...args: TArgs) { // Save the args for use later - argsToUse = Array.from(args) as TArgs; + argsToUse = args; if (!ticking) { ticking = true; requestAnimFrame.call(window, () => {