Actually fixed logged in bug

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