From 0a065cb00af47ed8664856122fba7ef1c835712c Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Fri, 24 Jul 2020 17:27:24 -0300 Subject: [PATCH] :broom: unhide sidebar --- client/modules/App/App.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/modules/App/App.jsx b/client/modules/App/App.jsx index b43dee17..af441a9d 100644 --- a/client/modules/App/App.jsx +++ b/client/modules/App/App.jsx @@ -34,8 +34,7 @@ class App extends React.Component { render() { return (
- {/* FIXME: Remove && false */} - {false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } + {this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } {this.props.children}
);