Skip to content

Commit

Permalink
Redirect user to /game instead of /account on login - Fix #113
Browse files Browse the repository at this point in the history
  • Loading branch information
MrEliasen committed Apr 30, 2018
1 parent f4dde87 commit 94606fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function* saveAuthDetails(action) {
authToken: action.payload,
},
});
yield put(push('/account'));
yield put(push('/game'));
}

function* logoutAccount(action = null) {
Expand Down

0 comments on commit 94606fd

Please sign in to comment.