Skip to content

Commit

Permalink
drop debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
singularity15 committed Dec 13, 2024
1 parent 95e87bb commit 2b504e2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/rest-fetch/src/restApiFetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ export class RestApiFetch<ST = any, FT = string> {
throw this.buildFromCaughtError(errorTyped);
}
private async handleErrorAndRetry<T>(error: any, options: ResourceRequestOptions, apiCall: () => T): Promise<T> {
debugger;
const errorTyped = this.fixAxiosError(error);
if (options.skipRetryOnAuthFailure || errorTyped.status !== 401) {
this.handleError(error);
Expand Down

0 comments on commit 2b504e2

Please sign in to comment.