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.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/UserStore.ts b/src/stores/UserStore.ts
index 7ba8f4222..0616acdad 100644
--- a/src/stores/UserStore.ts
+++ b/src/stores/UserStore.ts
@@ -210,7 +210,7 @@ export default class UserStore extends TypedStore {
210 currency, 210 currency,
211 }): Promise<void> { 211 }): Promise<void> {
212 // TODO: [TS DEBT] Need to find a way proper to implement promise's then and catch in request class 212 // TODO: [TS DEBT] Need to find a way proper to implement promise's then and catch in request class
213 // @ts-ignore 213 // @ts-expect-error Fix me
214 const authToken = await this.signupRequest.execute({ 214 const authToken = await this.signupRequest.execute({
215 firstname, 215 firstname,
216 lastname, 216 lastname,
@@ -400,7 +400,7 @@ export default class UserStore extends TypedStore {
400 const params = new URLSearchParams(parsedUrl.search.slice(1)); 400 const params = new URLSearchParams(parsedUrl.search.slice(1));
401 401
402 // TODO: Remove the neccesity for `as string` 402 // TODO: Remove the neccesity for `as string`
403 params.append('authToken', this.authToken as string); 403 params.append('authToken', this.authToken!);
404 404
405 return `${parsedUrl.origin}${parsedUrl.pathname}?${params.toString()}`; 405 return `${parsedUrl.origin}${parsedUrl.pathname}?${params.toString()}`;
406 } 406 }