From 819ec6946ca4ca67cec018e231c448bdc6e6b6db Mon Sep 17 00:00:00 2001 From: ryan-crabbe-berri Date: Sun, 12 Jul 2026 22:28:13 -0700 Subject: [PATCH] chore(ui): broaden lodash ban message beyond debounce --- ui/litellm-dashboard/eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/eslint.config.mjs b/ui/litellm-dashboard/eslint.config.mjs index 5134264423b..8070fdc172e 100644 --- a/ui/litellm-dashboard/eslint.config.mjs +++ b/ui/litellm-dashboard/eslint.config.mjs @@ -56,7 +56,7 @@ const eslintConfig = [ { group: ["lodash", "lodash/*", "lodash.*"], message: - "lodash was removed from the dashboard; for debouncing use @tanstack/react-pacer (see src/utils/debounceConstants.ts for the shared wait).", + "lodash was removed from the dashboard. For debouncing use @tanstack/react-pacer (shared wait: src/utils/debounceConstants.ts); for other utilities prefer native ES equivalents.", }, ], },