diff --git a/web/app.react.js b/web/app.react.js --- a/web/app.react.js +++ b/web/app.react.js @@ -35,6 +35,7 @@ import { useSelector } from './redux/redux-utils'; import VisibilityHandler from './redux/visibility-handler.react'; import history from './router-history'; +import AccountSettings from './settings/account-settings.react'; import LeftLayoutAside from './sidebar/left-layout-aside.react'; import Splash from './splash/splash.react'; import './typography.css'; @@ -144,6 +145,11 @@ mainContent = ; } else if (this.props.navInfo.tab === 'apps') { mainContent = ; + } else if ( + this.props.navInfo.tab === 'settings' && + this.props.navInfo.settingsSection === 'account' + ) { + mainContent = ; } return (