aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/AuthLayoutContainer.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-16 20:40:11 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-16 20:40:11 +0100
commit9d2447cfd493da423ce8a42a421fa8075c359da7 (patch)
tree8b5c9c4fe339eb7a77696f9f4feba9078f04c02f /src/containers/auth/AuthLayoutContainer.js
parentFix linting (diff)
downloadferdium-app-9d2447cfd493da423ce8a42a421fa8075c359da7.tar.gz
ferdium-app-9d2447cfd493da423ce8a42a421fa8075c359da7.tar.zst
ferdium-app-9d2447cfd493da423ce8a42a421fa8075c359da7.zip
Add isSystemDarkModeEnabled to AppStore
Diffstat (limited to 'src/containers/auth/AuthLayoutContainer.js')
-rw-r--r--src/containers/auth/AuthLayoutContainer.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/containers/auth/AuthLayoutContainer.js b/src/containers/auth/AuthLayoutContainer.js
index 62b589d2f..a0618e012 100644
--- a/src/containers/auth/AuthLayoutContainer.js
+++ b/src/containers/auth/AuthLayoutContainer.js
@@ -26,6 +26,7 @@ export default @inject('stores', 'actions') @observer class AuthLayoutContainer
26 isAPIHealthy={!stores.app.healthCheckRequest.isError} 26 isAPIHealthy={!stores.app.healthCheckRequest.isError}
27 retryHealthCheck={actions.app.healthCheck} 27 retryHealthCheck={actions.app.healthCheck}
28 isHealthCheckLoading={stores.app.healthCheckRequest.isExecuting} 28 isHealthCheckLoading={stores.app.healthCheckRequest.isExecuting}
29 darkMode={stores.app.isSystemDarkModeEnabled}
29 > 30 >
30 {children} 31 {children}
31 </AuthLayout> 32 </AuthLayout>