From ff64dd22ad6a9075186c82dbd8b809d7974c9660 Mon Sep 17 00:00:00 2001 From: Krishna Acondy Date: Mon, 18 Jan 2021 09:01:07 +0000 Subject: [PATCH] chore(*): use local axios instance --- src/auth/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/auth.ts b/src/auth/auth.ts index 74945fa..160531d 100644 --- a/src/auth/auth.ts +++ b/src/auth/auth.ts @@ -54,7 +54,7 @@ export class AuthManager { } const loginParamsStr = serialize(loginParams) - const loginResponse = await axios + const loginResponse = await this.httpClient .post(this.loginUrl, loginParamsStr, { withCredentials: true, responseType: 'text',