Update useConnection.ts

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

View File

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