From 96bd7ecb7fc3eaa2371164bc7c95d0b9d93a8205 Mon Sep 17 00:00:00 2001 From: Daniele Scasciafratte Date: Tue, 25 Feb 2025 10:35:21 +0100 Subject: [PATCH] [ui] Fix tagsSpendLogsCall The URL is appended twice so the requests doesn't work --- 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 eff558e2b3..b6df58cc7a 100644 --- a/ui/litellm-dashboard/src/components/networking.tsx +++ b/ui/litellm-dashboard/src/components/networking.tsx @@ -1586,7 +1586,7 @@ export const tagsSpendLogsCall = async ( // if tags, convert the list to a comma separated string if (tags) { - url += `${url}&tags=${tags.join(",")}`; + url = `${url}&tags=${tags.join(",")}`; } console.log("in tagsSpendLogsCall:", url);