Skip to content

Commit

Permalink
Fix isFullScreen typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Nov 22, 2018
1 parent 219bf65 commit fd7df5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/containers/auth/AuthLayoutContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default @inject('stores', 'actions') @observer class AuthLayoutContainer

render() {
const { stores, actions, children, location } = this.props;

return (
<AuthLayout
error={stores.globalError.response}
Expand All @@ -26,7 +27,7 @@ export default @inject('stores', 'actions') @observer class AuthLayoutContainer
isAPIHealthy={!stores.app.healthCheckRequest.isError}
retryHealthCheck={actions.app.healthCheck}
isHealthCheckLoading={stores.app.healthCheckRequest.isExecuting}
isFullScreen={stores.app.isFullscreen}
isFullScreen={stores.app.isFullScreen}
darkMode={stores.app.isSystemDarkModeEnabled}
>
{children}
Expand Down

0 comments on commit fd7df5a

Please sign in to comment.