File clean up. Refactor header.

This commit is contained in:
Patrick Fic
2020-02-07 17:03:21 -08:00
parent d3bd68d40a
commit a3c66866d3
17 changed files with 181 additions and 248 deletions

View File

@@ -34,6 +34,7 @@ export function* signInWithEmail({ payload: { email, password } }) {
uid: user.uid,
email: user.email,
displayName: user.displayName,
photoURL: user.photoURL,
authorized: true
})
);
@@ -62,6 +63,7 @@ export function* isUserAuthenticated() {
uid: user.uid,
email: user.email,
displayName: user.displayName,
photoURL: user.photoURL,
authorized: true
})
);