Fixed logged in bug

This commit is contained in:
2019-05-27 02:12:35 +10:00
parent 6d305b7708
commit a532f50b45
+1 -1
View File
@@ -64,7 +64,7 @@ CommonLinks.propTypes = {
function mapStoreToProps(store) { function mapStoreToProps(store) {
return { return {
loggedIn: store.account.id !== 0 loggedIn: this.store.id && store.account.id !== 0
} }
} }