From e4d669f9b6869265a122ae19011a596263bb28de Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Tue, 31 Aug 2021 12:58:47 +0500 Subject: [PATCH] chore: typo fixed userName --- src/auth/AuthManager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/auth/AuthManager.ts b/src/auth/AuthManager.ts index 8156a71..62a44e8 100644 --- a/src/auth/AuthManager.ts +++ b/src/auth/AuthManager.ts @@ -30,7 +30,7 @@ export class AuthManager { password: string ): Promise<{ isLoggedIn: boolean - username: string + userName: string }> { const loginParams = { _service: 'default', @@ -47,7 +47,7 @@ export class AuthManager { this.userName = userName! return { isLoggedIn, - username: this.userName + userName: this.userName } } else { this.logOut() @@ -86,7 +86,7 @@ export class AuthManager { return { isLoggedIn, - username: this.userName + userName: this.userName } }