From 1345a50011976f155de2c1cd84d5da5b73742451 Mon Sep 17 00:00:00 2001 From: Maxwell Gerber Date: Wed, 16 Apr 2025 16:25:51 -0700 Subject: [PATCH] lint --- client/src/lib/auth.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/client/src/lib/auth.ts b/client/src/lib/auth.ts index 65650fd..7ef3182 100644 --- a/client/src/lib/auth.ts +++ b/client/src/lib/auth.ts @@ -90,8 +90,14 @@ export class InspectorOAuthClientProvider implements OAuthClientProvider { } clear() { - 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)); + 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), + ); } }