Merge pull request #1531 from ghalestrilo/fix/restore-dev-sidebar

[HOTFIX] Restore Devtools Sidebar
This commit is contained in:
ghalestrilo 2020-08-04 09:29:42 -03:00 committed by GitHub
commit 697d768cb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

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