Or at least fire an action from within an affect?
yield put(action) ?
It's not working for me. To make sure, I am trying to call an effect from another effect. No reducers involved.
yield put({ type: 'anotherModel/effectA', payload: 111 })
yield put({ type: 'effectInSameModel', payload: 222 })
Nm I forgot to yield.
For some reason this is not working for me. Nothing happens.
If I take the dispatch function and call it then it works...
Most helpful comment