Fix bad user being set on team creation causing Manage Team modal to not work.

Этот коммит содержится в:
JoramWilander
2015-09-01 15:49:24 -04:00
родитель 8d6c354811
Коммит 57692bcb6d

Просмотреть файл

@@ -41,7 +41,7 @@ module.exports = React.createClass({
client.loginByEmail(teamSignup.team.name, teamSignup.team.email, teamSignup.user.password,
function(data) {
UserStore.setLastEmail(teamSignup.team.email);
UserStore.setCurrentUser(teamSignup.user);
UserStore.setCurrentUser(data);
if (this.props.hash > 0) {
BrowserStore.setGlobalItem(this.props.hash, JSON.stringify({wizard: 'finished'}));
}