Victor de Oliveira Areas
Victor de Oliveira Areas
Hey, it seems a new version of React Docgen (v5.4.1) was just release supporting some kind of dynamic PropTypes. Could we expect having a new release of storybook including this...
Implementing `takeLeading` manually, using `fork` passing a saga with `while(true)` with a `take` action inside, is not working too. Example: ```javascript function* mySaga() { while(true) { yield take(SOME_ACTION); yield call(anotherSaga);...
This issue happens because `takeLeading` uses `call` to block waiting for the result of `anotherSaga`. The function `call` does not create a new `Task` to run `anotherSaga`, like `fork` does....
I need this fixed. It will fix an issue in my projects.
I had to change this file in my local node_modules to generate a new bundle with no bugs. I know that this is ugly. There is already a PR for...