d-pro
Results
2
comments of
d-pro
@abettadapur I've faced the same issue. Saga with `spawn` does it. ``` function* rootSaga() { yield all([fork(someSaga1), spawn(someSaga2)]) } ``` also example from [saga documentations](https://redux-saga.js.org/docs/advanced/RootSaga.html) ``` function* rootSaga () {...
@leonardoanalista done