diff --git a/src/utils/http/axios/Axios.ts b/src/utils/http/axios/Axios.ts index e3e912d..19c2ba3 100644 --- a/src/utils/http/axios/Axios.ts +++ b/src/utils/http/axios/Axios.ts @@ -113,7 +113,7 @@ export class VAxios { isFunction(responseInterceptorsCatch) && this.axiosInstance.interceptors.response.use(undefined, (error) => { // @ts-ignore - responseInterceptorsCatch(this.axiosInstance, error); + return responseInterceptorsCatch(this.axiosInstance, error); }); }