From db857d91ff7ba42e7e50e0ef9330e8eba84bb610 Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Thu, 27 Aug 2020 17:19:32 -0300 Subject: [PATCH 1/2] :lipstick: fix sidebar background set to white --- client/components/mobile/Sidebar.jsx | 2 +- client/modules/App/App.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/mobile/Sidebar.jsx b/client/components/mobile/Sidebar.jsx index bc6c13ab..7ae608cc 100644 --- a/client/components/mobile/Sidebar.jsx +++ b/client/components/mobile/Sidebar.jsx @@ -16,7 +16,7 @@ const SidebarWrapper = styled.div` z-index: 2; left: 0; - background: white; + background: ${prop('backgroundColor')}; box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10); `; diff --git a/client/modules/App/App.jsx b/client/modules/App/App.jsx index 3b74e1fc..089d80f7 100644 --- a/client/modules/App/App.jsx +++ b/client/modules/App/App.jsx @@ -41,7 +41,7 @@ class App extends React.Component { render() { return (
- {this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } + {false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } {this.props.children}
); From f121fc7a9f9ff98364a332457f04d6ed8d4dbb72 Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Fri, 28 Aug 2020 13:21:22 -0400 Subject: [PATCH 2/2] Add back Redux dev tools --- client/modules/App/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/modules/App/App.jsx b/client/modules/App/App.jsx index 089d80f7..3b74e1fc 100644 --- a/client/modules/App/App.jsx +++ b/client/modules/App/App.jsx @@ -41,7 +41,7 @@ class App extends React.Component { render() { return (
- {false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } + {this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } {this.props.children}
);