Parmesh Krishen
Parmesh Krishen
Can you expand on when this is needed? I seems like arrays are being flattened here, more or less.
I'm experiencing the same issue. It looks like a `gatsby` update is to blame.
Does this work for y'all? ```jsx // Photo ⬇️ import i from './image.jpg'; // Video ⬇️ import v from './video.mp4'; // Audio ⬇️ import a from './audio.mp3'; // Object ⬇️...
If we implement https://github.com/angelle-sw/use-axios-client/pull/97, I think we would just need to specify a `node` target in the `@babel/preset-env` config along with a `browserslist` entry in `package.json` and the rest should...
https://github.com/angelle-sw/use-axios-client/pull/97 allows us to not have to think about `.npmignore`!
I can see the case for `loading` being `true` by default for `useAxios`, but not for `useLazyAxios`.
Can you provide a more thorough code example? The tests are passing for this case.
I published something that is based on the discussion here. Hopefully it helps push this issue along. 😄 https://github.com/therealparmesh/use-react-saga ```jsx function* incrementAsync() { const previousState = yield select(); yield call(console.log,...
Here's a CodeSandbox example: https://codesandbox.io/s/use-react-saga-example-e8rrz I've updated the library to try to tackle problems around calling the `select` helper and the number of React updates.
I’ll take a look at this. Thanks!