diff --git a/packages/rest-fetch/src/restApiFetch.ts b/packages/rest-fetch/src/restApiFetch.ts index 0aeaa3c..f8d80ba 100755 --- a/packages/rest-fetch/src/restApiFetch.ts +++ b/packages/rest-fetch/src/restApiFetch.ts @@ -172,7 +172,6 @@ export class RestApiFetch { throw this.buildFromCaughtError(errorTyped); } private async handleErrorAndRetry(error: any, options: ResourceRequestOptions, apiCall: () => T): Promise { - debugger; const errorTyped = this.fixAxiosError(error); if (options.skipRetryOnAuthFailure || errorTyped.status !== 401) { this.handleError(error);