From 599c13039508cc3b7eb123813e57a3364b047752 Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Tue, 9 Mar 2021 18:06:27 +0300 Subject: [PATCH] fix(error-handling): fixed console.log --- src/request/RequestClient.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/request/RequestClient.ts b/src/request/RequestClient.ts index 4c61eef..16a0e97 100644 --- a/src/request/RequestClient.ts +++ b/src/request/RequestClient.ts @@ -458,8 +458,6 @@ const throwIfError = (response: AxiosResponse) => { throw new AuthorizeError(response.data.message, authorizeRequestUrl) } - console.log(`[response]`, response) - const error = parseError(response.data as string) if (error) {