deleted teams endpoint fix

This commit is contained in:
yuneng-jiang 2026-01-17 11:00:32 -08:00
parent 0d3a9b1c87
commit 374662c60f

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",