fix: Disconnecting should clear oauth state

This commit is contained in:
Maxwell Gerber
2025-04-07 15:15:28 -07:00
parent 4053aa122d
commit 6a16e7cd24
2 changed files with 7 additions and 0 deletions

View File

@@ -68,6 +68,12 @@ class InspectorOAuthClientProvider implements OAuthClientProvider {
return verifier;
}
clear() {
sessionStorage.removeItem(SESSION_KEYS.CLIENT_INFORMATION);
sessionStorage.removeItem(SESSION_KEYS.TOKENS);
sessionStorage.removeItem(SESSION_KEYS.CODE_VERIFIER);
}
}
export const authProvider = new InspectorOAuthClientProvider();