sheaivey / react-axios

Axios Components for React with child function callback
MIT License
180 stars 20 forks source link

Fix isCancel missing using custom axios instance #24

Closed roprgm closed 6 years ago

roprgm commented 6 years ago

Custom axios instance don't have isCancel helper function. I can resolve this issue using this on my project code:

const apiInstance = axios.create({...})
apiInstance.isCancel = axios.isCancel

Or directly using native axios isCancel on Request render method.

charlax commented 6 years ago

Having the same issue. @sheaivey would you mind landing this? Thanks!

sheaivey commented 6 years ago

Sorry for the delay here... Just saw the PR for the first time today. I should be pushing out the update to npm later today.