Skip to content

Commit 1345a50

Browse files
committed
lint
1 parent 15960f5 commit 1345a50

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

client/src/lib/auth.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,14 @@ export class InspectorOAuthClientProvider implements OAuthClientProvider {
9090
}
9191

9292
clear() {
93-
sessionStorage.removeItem(getServerSpecificKey(SESSION_KEYS.CLIENT_INFORMATION, this.serverUrl));
94-
sessionStorage.removeItem(getServerSpecificKey(SESSION_KEYS.TOKENS, this.serverUrl));
95-
sessionStorage.removeItem(getServerSpecificKey(SESSION_KEYS.CODE_VERIFIER, this.serverUrl));
93+
sessionStorage.removeItem(
94+
getServerSpecificKey(SESSION_KEYS.CLIENT_INFORMATION, this.serverUrl),
95+
);
96+
sessionStorage.removeItem(
97+
getServerSpecificKey(SESSION_KEYS.TOKENS, this.serverUrl),
98+
);
99+
sessionStorage.removeItem(
100+
getServerSpecificKey(SESSION_KEYS.CODE_VERIFIER, this.serverUrl),
101+
);
96102
}
97103
}

0 commit comments

Comments
 (0)