aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/UserStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/UserStore.ts')
-rw-r--r--src/stores/UserStore.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/UserStore.ts b/src/stores/UserStore.ts
index ade68e4d4..adf144b74 100644
--- a/src/stores/UserStore.ts
+++ b/src/stores/UserStore.ts
@@ -408,7 +408,7 @@ export default class UserStore extends TypedStore {
408 const parsedUrl = new URL(url); 408 const parsedUrl = new URL(url);
409 const params = new URLSearchParams(parsedUrl.search.slice(1)); 409 const params = new URLSearchParams(parsedUrl.search.slice(1));
410 410
411 // TODO: Remove the neccesity for `as string` 411 // TODO: Remove the necessity for `as string`
412 params.append('authToken', this.authToken!); 412 params.append('authToken', this.authToken!);
413 413
414 return `${parsedUrl.origin}${parsedUrl.pathname}?${params.toString()}`; 414 return `${parsedUrl.origin}${parsedUrl.pathname}?${params.toString()}`;