From 923d0ede7e6a2116bcbc37938bcd6a88a1c37cef Mon Sep 17 00:00:00 2001 From: Ionys <9364594+Ionys320@users.noreply.github.com> Date: Thu, 26 Jun 2025 16:17:11 +0200 Subject: [PATCH] fix(lint): Remove another issue Wasn't mine this time! --- src/util-frontend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util-frontend.js b/src/util-frontend.js index 33fc91a64..46ff6b736 100644 --- a/src/util-frontend.js +++ b/src/util-frontend.js @@ -224,7 +224,7 @@ export function Debounce() { /** * exec callback function after delay if no new call to function happens * @param {Function} callback function to execute after delay - * @param {number} [delay=100] delay before execute the callback if no new call to function happens + * @param {number} delay before execute the callback if no new call to function happens * @returns {void} */ return function (callback, delay = 100) {