aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/AuthLayoutContainer.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-22 10:54:20 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-22 10:54:20 +0100
commitfd7df5a5f0b5e8c2dc874be7ee57cbf2e7a4f72f (patch)
tree577a104476ec0d4edb3e7faf549490c4a1b1e808 /src/containers/auth/AuthLayoutContainer.js
parentIgnore npm-debug-logs (diff)
downloadferdium-app-fd7df5a5f0b5e8c2dc874be7ee57cbf2e7a4f72f.tar.gz
ferdium-app-fd7df5a5f0b5e8c2dc874be7ee57cbf2e7a4f72f.tar.zst
ferdium-app-fd7df5a5f0b5e8c2dc874be7ee57cbf2e7a4f72f.zip
Fix isFullScreen typo
Diffstat (limited to 'src/containers/auth/AuthLayoutContainer.js')
-rw-r--r--src/containers/auth/AuthLayoutContainer.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/containers/auth/AuthLayoutContainer.js b/src/containers/auth/AuthLayoutContainer.js
index e1a780d1e..a25a1fd5e 100644
--- a/src/containers/auth/AuthLayoutContainer.js
+++ b/src/containers/auth/AuthLayoutContainer.js
@@ -18,6 +18,7 @@ export default @inject('stores', 'actions') @observer class AuthLayoutContainer
18 18
19 render() { 19 render() {
20 const { stores, actions, children, location } = this.props; 20 const { stores, actions, children, location } = this.props;
21
21 return ( 22 return (
22 <AuthLayout 23 <AuthLayout
23 error={stores.globalError.response} 24 error={stores.globalError.response}
@@ -26,7 +27,7 @@ export default @inject('stores', 'actions') @observer class AuthLayoutContainer
26 isAPIHealthy={!stores.app.healthCheckRequest.isError} 27 isAPIHealthy={!stores.app.healthCheckRequest.isError}
27 retryHealthCheck={actions.app.healthCheck} 28 retryHealthCheck={actions.app.healthCheck}
28 isHealthCheckLoading={stores.app.healthCheckRequest.isExecuting} 29 isHealthCheckLoading={stores.app.healthCheckRequest.isExecuting}
29 isFullScreen={stores.app.isFullscreen} 30 isFullScreen={stores.app.isFullScreen}
30 darkMode={stores.app.isSystemDarkModeEnabled} 31 darkMode={stores.app.isSystemDarkModeEnabled}
31 > 32 >
32 {children} 33 {children}