score:1

Accepted answer

when you do yield all([...]) in rootsaga you have to call the functions like sessionsaga(). in your code you are just listing the generator functions. see root saga docs

i think something like:

import { all, call } from 'redux-saga/effects'

export default (customsagas) => function* rootsaga() {
  yield all(customsagas.map(saga => call(saga)));
}

could work.


Related Query

More Query from same tag