diff --git a/src/utils/debounce.js b/src/utils/debounce.js index 018000fd2..5f624e926 100644 --- a/src/utils/debounce.js +++ b/src/utils/debounce.js @@ -5,9 +5,6 @@ export default function debounce(func, delay) { const createLaterFunc = (args) => () => { timeout = null; func.apply(null, args); - - // Only run the deferred function once - laterFunc = undefined; }; const debouncedFunc = (...args) => {