fixed multiple issues with the /signin page. #935 #936 #937

This commit is contained in:
Danny Coates 2018-09-24 12:01:39 -07:00
parent d34ff79fd7
commit c8bf3101aa
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
7 changed files with 35 additions and 24 deletions

View file

@ -45,8 +45,8 @@ export default function(state, emitter) {
lastRender = Date.now();
});
emitter.on('login', () => {
state.user.login();
emitter.on('login', email => {
state.user.login(email);
});
emitter.on('logout', () => {