We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd5bec commit 04898cbCopy full SHA for 04898cb
client/src/lib/hooks/useConnection.ts
@@ -367,7 +367,8 @@ export function useConnection({
367
(error instanceof StreamableHTTPError && error.code === 401) ||
368
(error instanceof Error && error.message.includes("401")) ||
369
(error instanceof Error && error.message.includes("Unauthorized")) ||
370
- (error instanceof Error && error.message.includes("Missing Authorization header"))
+ (error instanceof Error &&
371
+ error.message.includes("Missing Authorization header"))
372
);
373
};
374
0 commit comments