aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/layout/AppLayoutContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/layout/AppLayoutContainer.js')
-rw-r--r--src/containers/layout/AppLayoutContainer.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/containers/layout/AppLayoutContainer.js b/src/containers/layout/AppLayoutContainer.js
index e1423bdaa..430b49b55 100644
--- a/src/containers/layout/AppLayoutContainer.js
+++ b/src/containers/layout/AppLayoutContainer.js
@@ -75,7 +75,9 @@ export default @inject('stores', 'actions') @observer class AppLayoutContainer e
75 75
76 if (isLoadingFeatures || isLoadingServices) { 76 if (isLoadingFeatures || isLoadingServices) {
77 return ( 77 return (
78 <AppLoader /> 78 <ThemeProvider theme={ui.theme}>
79 <AppLoader />
80 </ThemeProvider>
79 ); 81 );
80 } 82 }
81 83
@@ -105,6 +107,7 @@ export default @inject('stores', 'actions') @observer class AppLayoutContainer e
105 setWebviewReference={setWebviewReference} 107 setWebviewReference={setWebviewReference}
106 openWindow={openWindow} 108 openWindow={openWindow}
107 reload={reload} 109 reload={reload}
110 openSettings={openSettings}
108 isAppMuted={settings.all.app.isAppMuted} 111 isAppMuted={settings.all.app.isAppMuted}
109 update={updateService} 112 update={updateService}
110 /> 113 />