1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-06 20:10:05 +00:00

chore(*): use local axios instance

This commit is contained in:
Krishna Acondy
2021-01-18 09:01:07 +00:00
parent e7cceab065
commit ff64dd22ad

View File

@@ -54,7 +54,7 @@ export class AuthManager {
}
const loginParamsStr = serialize(loginParams)
const loginResponse = await axios
const loginResponse = await this.httpClient
.post<string>(this.loginUrl, loginParamsStr, {
withCredentials: true,
responseType: 'text',