aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout/AppLayout.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/layout/AppLayout.js')
-rw-r--r--src/components/layout/AppLayout.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/layout/AppLayout.js b/src/components/layout/AppLayout.js
index a31419a5e..084d93ecd 100644
--- a/src/components/layout/AppLayout.js
+++ b/src/components/layout/AppLayout.js
@@ -74,8 +74,6 @@ const toggleFullScreen = () => {
74 ipcRenderer.send('window.toolbar-double-clicked'); 74 ipcRenderer.send('window.toolbar-double-clicked');
75}; 75};
76 76
77@injectSheet(styles)
78@observer
79class AppLayout extends Component { 77class AppLayout extends Component {
80 static propTypes = { 78 static propTypes = {
81 classes: PropTypes.object.isRequired, 79 classes: PropTypes.object.isRequired,
@@ -208,4 +206,6 @@ class AppLayout extends Component {
208 } 206 }
209} 207}
210 208
211export default injectIntl(AppLayout); 209export default injectIntl(
210 injectSheet(styles, { injectTheme: true })(observer(AppLayout)),
211);