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 568199a commit d4da6c6Copy full SHA for d4da6c6
src/client/auth.ts
@@ -571,7 +571,7 @@ async function tryMetadataDiscovery(
571
* Determines if fallback to root discovery should be attempted
572
*/
573
function shouldAttemptFallback(response: Response | undefined, pathname: string): boolean {
574
- return !response || (response.status >= 400 && response.status < 500 ) && pathname !== '/';
+ return !response || (response.status >= 400 && response.status < 500) && pathname !== '/';
575
}
576
577
/**
0 commit comments