Merge pull request #20909 from jquinter/fix/ui-tagsSpendLogsCall-double-url

fix(ui): remove duplicate URL in tagsSpendLogsCall query string
This commit is contained in:
jquinter
2026-02-19 02:22:33 -03:00
committed by GitHub
@@ -2428,7 +2428,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);