From b7ded5a138465c36193aefa5b857e75523cfa1ab Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Thu, 4 Oct 2018 22:59:55 +0200 Subject: [PATCH] enable App/Offline notification --- .../notifications/App/components/OnlineStatus/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/notifications/App/components/OnlineStatus/index.js b/src/components/notifications/App/components/OnlineStatus/index.js index 1c81c0ca..b7712253 100644 --- a/src/components/notifications/App/components/OnlineStatus/index.js +++ b/src/components/notifications/App/components/OnlineStatus/index.js @@ -6,6 +6,6 @@ import type { Props } from '../../index'; export default (props: Props) => { const { online } = props.wallet; - // if (online) return null; + if (online) return null; return (); }; \ No newline at end of file