You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function*addTodoSaga(action: ReturnType<typeoffetchTodosAsync.request>): Generator{try{// <= this line is missingconstresponse: Todo[]=yieldcall(todosApi.getAll,action.payload);yieldput(fetchTodosAsync.success(response));}catch(err){yieldput(fetchTodosAsync.failure(err));}}
The text was updated successfully, but these errors were encountered:
Description
Redux saga example in the docs doesn't work because of a missing line
https://github.com/piotrwitek/typesafe-actions#with-redux-saga-sagas
Suggested solution(s)
The text was updated successfully, but these errors were encountered: