Fix update notification

This commit is contained in:
Thomas Nordquist
2019-04-10 20:34:44 +02:00
parent a929729e6a
commit fb8a16e1d7

View File

@@ -266,8 +266,8 @@ const styles = (theme: Theme) => ({
const mapStateToProps = (state: AppState) => {
return {
showUpdateNotification: state.globalState.showUpdateNotification,
showUpdateDetails: state.globalState.showUpdateDetails,
showUpdateNotification: state.globalState.get('showUpdateNotification'),
showUpdateDetails: state.globalState.get('showUpdateDetails'),
}
}