From 2b504e2e1bf9a5433eefb04792308b047078c8f8 Mon Sep 17 00:00:00 2001 From: kevin Date: Fri, 13 Dec 2024 08:02:51 -0500 Subject: [PATCH] drop debugger --- packages/rest-fetch/src/restApiFetch.ts | 1 - 1 file changed, 1 deletion(-) 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);