🐛 restore sidebar

This commit is contained in:
ghalestrilo 2020-08-05 15:28:13 -03:00
parent f2e8d40861
commit 8fcf6533d3
1 changed files with 1 additions and 4 deletions

View File

@ -34,10 +34,7 @@ class App extends React.Component {
render() {
return (
<div className="app">
<div style={{ display: 'none' }}>
{this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
</div>
{this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
{this.props.children}
</div>
);