Skip to content

Commit

Permalink
fix: fix typecheck error
Browse files Browse the repository at this point in the history
  • Loading branch information
SeqviriouM committed Oct 17, 2024
1 parent b78fa14 commit a266fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/axios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function getAxiosClient(

return axiosRetry.isNetworkError(error) || axiosRetry.isRetryableError(error);
},
onRetry: (retryCount, error, requestConfig) => {
onRetry: (retryCount, _error, requestConfig) => {
_.set(requestConfig, ['headers', 'x-request-attempt'], retryCount);
},
});
Expand Down

0 comments on commit a266fc5

Please sign in to comment.