Merge pull request #19282 from BerriAI/yj_ui_test_branch

[Fix] UI - Deleted Teams Endpoint Fix
This commit is contained in:
yuneng-jiang 2026-01-17 11:07:31 -08:00 committed by GitHub
commit 3619fdce31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -152,7 +152,7 @@ const deletedTeamListCall = async (
.map(([key, value]) => [key, String(value)]),
);
const url = `${baseUrl ? `${baseUrl}/team/list` : "/team/list"}?${params}`;
const url = `${baseUrl ? `${baseUrl}/v2/team/list` : "/v2/team/list"}?${params}`;
const response = await fetch(url, {
method: "GET",