refactor: Use new serverspecifickey API

This commit is contained in:
Maxwell Gerber
2025-04-16 16:24:49 -07:00
parent 0dc6df57d6
commit 15960f5aa4
2 changed files with 4 additions and 3 deletions

View File

@@ -90,8 +90,8 @@ export class InspectorOAuthClientProvider implements OAuthClientProvider {
}
clear() {
sessionStorage.removeItem(SESSION_KEYS.CLIENT_INFORMATION);
sessionStorage.removeItem(SESSION_KEYS.TOKENS);
sessionStorage.removeItem(SESSION_KEYS.CODE_VERIFIER);
sessionStorage.removeItem(getServerSpecificKey(SESSION_KEYS.CLIENT_INFORMATION, this.serverUrl));
sessionStorage.removeItem(getServerSpecificKey(SESSION_KEYS.TOKENS, this.serverUrl));
sessionStorage.removeItem(getServerSpecificKey(SESSION_KEYS.CODE_VERIFIER, this.serverUrl));
}
}