Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
fix: fix route
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev committed May 23, 2020
1 parent 0a750bb commit b929a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/auth/auth.sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function* handleLogoutSaga() {
yield takeLatest(
actions.unauthorized.type,
function* handleUnauthorizedAction() {
yield put(routerActions.push(Route.Login));
yield put(routerActions.push({ route: Route.Login }));
},
);
}

0 comments on commit b929a82

Please sign in to comment.