0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-07 18:32:40 +00:00

Fix issues making brews when not signed in

This commit is contained in:
Trevor Buckner
2020-10-06 14:20:09 -04:00
parent 657a374895
commit 864cc7a7bb
4 changed files with 7 additions and 4 deletions

View File

@@ -137,8 +137,10 @@ const EditPage = createClass({
toggleGoogleStorage : function(){
this.setState((prevState)=>({
saveGoogle : !prevState.saveGoogle
}));
saveGoogle : !prevState.saveGoogle,
isSaving : false,
errors : null
}), ()=>this.trySave());
},
save : async function(){

View File

@@ -35,7 +35,7 @@ const NewPage = createClass({
text : '',
isSaving : false,
saveGoogle : (global.account.googleId ? true : false),
saveGoogle : (global.account && global.account.googleId ? true : false),
errors : []
};
},