Subramanya Chakravarthy

Results 62 comments of Subramanya Chakravarthy

Do you face this issue on real device on debug mode?

You are receiving 404 response which is not an error

Please check README for cancellation https://github.com/infinitered/apisauce#cancel-request

we will try to get AbortController soon

If you throw an error it will go to the `catch` ```js const naviMonitor = (response) => { try{ if (response.status === 401) { console.warn('Unhandled session expiration') signOut() } }...

The transform functions has the `axiosRequestConfig` as param which means you can basically access `data, url, method` destructured Example: ```js api.addRequestTransform(({data, url, method}) => { // .. do something })...