Skip to content

Commit 69b427f

Browse files
committed
style: run prettier --write for consistent formatting
1 parent 3eaf23c commit 69b427f

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

client/src/lib/auth.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -135,21 +135,15 @@ export class DebugInspectorOAuthClientProvider extends InspectorOAuthClientProvi
135135
* Saves the resource URL to session storage to persist it across the redirect.
136136
*/
137137
saveResource(resource: URL): void {
138-
const key = getServerSpecificKey(
139-
SESSION_KEYS.RESOURCE_URL,
140-
this.serverUrl,
141-
);
138+
const key = getServerSpecificKey(SESSION_KEYS.RESOURCE_URL, this.serverUrl);
142139
sessionStorage.setItem(key, resource.toString());
143140
}
144141

145142
/**
146143
* Retrieves the persisted resource URL from session storage.
147144
*/
148145
getResource(): URL | undefined {
149-
const key = getServerSpecificKey(
150-
SESSION_KEYS.RESOURCE_URL,
151-
this.serverUrl,
152-
);
146+
const key = getServerSpecificKey(SESSION_KEYS.RESOURCE_URL, this.serverUrl);
153147
const urlString = sessionStorage.getItem(key);
154148
if (!urlString) {
155149
return undefined;

0 commit comments

Comments
 (0)