npm run bootstrap looping error
With a forked instance of
Type 'TVariables' is not assignable to type 'AxiosRequestConfig<any> | undefined'.
Type 'TVariables' is not assignable to type 'AxiosRequestConfig<any>'.
172 const { data } = await httpClient.delete(url, variables);
refine, after I run npm install and run npm run boostrap I am receiving an error message that appears to loop forever. I am using node version 16.2.0. The error I am seeing output is: ```src/dataProvider/index.ts:172:59 - error TS2345: Argument of type 'TVariables | undefined' is not assignable to parameter of type 'AxiosRequestConfig<any> | undefined'.Type 'TVariables' is not assignable to type 'AxiosRequestConfig<any> | undefined'.
Type 'TVariables' is not assignable to type 'AxiosRequestConfig<any>'.
172 const { data } = await httpClient.delete(url, variables);
