From 58b1f78ff024580c2d78c3a5c374f8bc8cdb6000 Mon Sep 17 00:00:00 2001 From: Cole McIntosh Date: Wed, 4 Jun 2025 14:25:57 -0600 Subject: [PATCH] Remove console log from handleShowInstructions in AdminPanel component --- ui/litellm-dashboard/src/components/admins.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/admins.tsx b/ui/litellm-dashboard/src/components/admins.tsx index 8378134326..79c6b95ce7 100644 --- a/ui/litellm-dashboard/src/components/admins.tsx +++ b/ui/litellm-dashboard/src/components/admins.tsx @@ -193,7 +193,6 @@ const AdminPanel: React.FC = ({ }; const handleShowInstructions = (formValues: Record) => { - console.log("Form submitted with values:", formValues); setIsAddSSOModalVisible(false); setIsInstructionsModalVisible(true); };