build(networking.tsx): modify url to prevent redirects

This commit is contained in:
Krrish Dholakia 2024-03-21 17:43:41 -07:00
parent abe8d7c921
commit d9577c3e2b
18 changed files with 12 additions and 17 deletions

View file

@ -178,7 +178,7 @@ export const userInfoCall = async (
}
console.log("in userInfoCall viewAll=", viewAll);
if (viewAll) {
url = `${url}/?view_all=true`;
url = `${url}?view_all=true`;
}
//message.info("Requesting user data");
const response = await fetch(url, {