Update useConnection.ts

This commit is contained in:
Allen Zhou
2025-02-04 15:00:14 -08:00
parent b5762d53fd
commit b4ae1327b5

View File

@@ -225,12 +225,6 @@ export function useConnection({
if (shouldRetry) {
return connect(undefined, retryCount + 1);
}
if (error instanceof SseError && error.code === 401) {
// Don't set error state if we're about to redirect for auth
return;
}
setConnectionStatus("error");
return;
}