DB migrations

Google button
This commit is contained in:
Tom Moor
2018-05-28 20:31:53 -07:00
parent ddd2b82d20
commit 72d874444e
12 changed files with 107 additions and 31 deletions

View File

@ -16,8 +16,10 @@ let authenticatedStores;
const Auth = ({ children }: Props) => {
if (stores.auth.authenticated) {
stores.auth.fetch();
// TODO: Show loading state
if (!stores.auth.team || !stores.auth.user) {
stores.auth.fetch();
return null;
}