fix - don't raise error when logout url does not load

This commit is contained in:
Ishaan Jaff 2024-06-12 19:30:37 -07:00
parent c510f6bb18
commit 18b28a1631

View file

@ -2405,7 +2405,6 @@ export const getProxyBaseUrlAndLogoutUrl = async (
if (!response.ok) {
const errorData = await response.text();
message.error(errorData, 10);
throw new Error("Network response was not ok");
}