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