Open
Description
The code in the tutorial does not execute properly. Pressing the async increment button has no effect.
The problem is that the tutorial specifies adding this code:
// notice how we now only export the rootSaga
// single entry point to start all Sagas at once
export default function* rootSaga() {
yield all([
helloSaga(),
watchIncrementAsync()
])
}
The sagas branch has the correct code:
// notice how we now only export the rootSaga
// single entry point to start all Sagas at once
export default function* rootSaga() {
yield [
helloSaga(),
watchIncrementAsync()
]
}
Metadata
Metadata
Assignees
Labels
No labels