From fb8a16e1d7c11a1e77dd2a12789464f398c99394 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Wed, 10 Apr 2019 20:34:44 +0200 Subject: [PATCH] Fix update notification --- app/src/UpdateNotifier.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/UpdateNotifier.tsx b/app/src/UpdateNotifier.tsx index fa84f61..6da5725 100644 --- a/app/src/UpdateNotifier.tsx +++ b/app/src/UpdateNotifier.tsx @@ -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'), } }