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

This commit is contained in:
Krrish Dholakia 2024-03-21 17:43:41 -07:00
parent 8ce39b5f51
commit 4bf9203436
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, {