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 929b930 commit 60049a5Copy full SHA for 60049a5
client/src/lib/auth.ts
@@ -76,10 +76,6 @@ export class InspectorOAuthClientProvider implements OAuthClientProvider {
76
return window.location.origin + "/oauth/callback";
77
}
78
79
- state(): string | Promise<string> {
80
- return generateOAuthState();
81
- }
82
-
83
get clientMetadata(): OAuthClientMetadata {
84
return {
85
redirect_uris: [this.redirectUrl],
@@ -91,6 +87,10 @@ export class InspectorOAuthClientProvider implements OAuthClientProvider {
91
87
};
92
88
93
89
90
+ state(): string | Promise<string> {
+ return generateOAuthState();
+ }
+
94
async clientInformation() {
95
// Try to get the preregistered client information from session storage first
96
const preregisteredClientInformation =
0 commit comments