Answer the question
In order to leave comments, you need to log in
[ redux-saga ] Why does a saga only run once?
const signIn = function* signIn() {
while (true) {
const request = yield take(LOGIN_REQUEST);
try {
response = yield call(AuthService.signIn, { login: request.data.login, password: request.data.password });
} catch (error) {
return alert(error);
}
yield put({ type: SET_AUTH, username: request.data.login });
yield put({ type: RESET_TO_MAIN });
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question