diff --git a/frontend/src/util/common.ts b/frontend/src/util/common.ts index 76998ec..26f5e3c 100644 --- a/frontend/src/util/common.ts +++ b/frontend/src/util/common.ts @@ -7,7 +7,7 @@ export const debounce = (func: Function, wait: number): Function => { timeout = setTimeout(() => func.apply(this, args), wait); }; }; - + // Throttle export const throttle = (func: Function, wait: number): Function => { let timeout: any;