From f88e6afbb7251393bd296307e408766673c60c57 Mon Sep 17 00:00:00 2001 From: tanjiro <56165694+NANDINI-star@users.noreply.github.com> Date: Fri, 15 Aug 2025 01:42:32 +0900 Subject: [PATCH] fix query param --- ui/litellm-dashboard/src/components/networking.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/litellm-dashboard/src/components/networking.tsx b/ui/litellm-dashboard/src/components/networking.tsx index 93ae040c868..a046d32488f 100644 --- a/ui/litellm-dashboard/src/components/networking.tsx +++ b/ui/litellm-dashboard/src/components/networking.tsx @@ -4731,7 +4731,7 @@ export const deletePassThroughEndpointsCall = async ( try { let url = proxyBaseUrl ? `${proxyBaseUrl}/config/pass_through_endpoint?endpoint_id=${endpointId}` - : `/config/pass_through_endpoint${endpointId}`; + : `/config/pass_through_endpoint?endpoint_id=${endpointId}`; //message.info("Requesting model data"); const response = await fetch(url, {