From cc43d09d79833fc69fbaf4b59ddc2ac5486c2e82 Mon Sep 17 00:00:00 2001 From: yuneng-jiang Date: Thu, 9 Apr 2026 21:19:02 -0700 Subject: [PATCH] Potential fix for pull request finding 'CodeQL / Unused variable, import, function or class' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- .../src/components/organisms/RegenerateKeyModal.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ui/litellm-dashboard/src/components/organisms/RegenerateKeyModal.tsx b/ui/litellm-dashboard/src/components/organisms/RegenerateKeyModal.tsx index babbf9989e..bbe3edceb6 100644 --- a/ui/litellm-dashboard/src/components/organisms/RegenerateKeyModal.tsx +++ b/ui/litellm-dashboard/src/components/organisms/RegenerateKeyModal.tsx @@ -26,9 +26,6 @@ export function RegenerateKeyModal({ selectedToken, visible, onClose, onKeyUpdat const [isRegenerating, setIsRegenerating] = useState(false); const [copied, setCopied] = useState(false); - // Track whether this is the user's own authentication key - const [isOwnKey, setIsOwnKey] = useState(false); - // Keep track of the current valid access token locally const [currentAccessToken, setCurrentAccessToken] = useState(null); @@ -45,10 +42,6 @@ export function RegenerateKeyModal({ selectedToken, visible, onClose, onKeyUpdat // Initialize the current access token setCurrentAccessToken(accessToken); - - // Check if this is the user's own authentication key by comparing the key values - const isUserOwnKey = selectedToken.key_name === accessToken; - setIsOwnKey(isUserOwnKey); } }, [visible, selectedToken, form, accessToken]); @@ -57,7 +50,6 @@ export function RegenerateKeyModal({ selectedToken, visible, onClose, onKeyUpdat // Reset states when modal is closed setRegeneratedKey(null); setIsRegenerating(false); - setIsOwnKey(false); setCurrentAccessToken(null); setCopied(false); form.resetFields();