[ui] Fix tagsSpendLogsCall

The URL is appended twice so the requests doesn't work
This commit is contained in:
Daniele Scasciafratte 2025-02-25 10:35:21 +01:00 committed by GitHub
parent de8497309b
commit 96bd7ecb7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);