From 80a3e072be72c19ba58d1afe3169b20bf8ed8038 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Tue, 10 Feb 2026 22:13:00 -0300 Subject: [PATCH] fix(ui): remove duplicate URL in tagsSpendLogsCall query string The template literal in the tags query parameter concatenation included `${url}` inside a `+=` assignment, causing the full URL to be doubled. Supersedes #8793 (original fix by @Mte90, now stale). Co-Authored-By: Claude Sonnet 4.5 --- 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 aa509c65aa..8e92e4f79d 100644 --- a/ui/litellm-dashboard/src/components/networking.tsx +++ b/ui/litellm-dashboard/src/components/networking.tsx @@ -2424,7 +2424,7 @@ export const tagsSpendLogsCall = async ( // if tags, convert the list to a comma separated string if (tags) { - url += `${url}&tags=${tags.join(",")}`; + url += `&tags=${tags.join(",")}`; } console.log("in tagsSpendLogsCall:", url);