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 = <Chat />;
     } else if (this.props.navInfo.tab === 'apps') {
       mainContent = <AppsDirectory />;
+    } else if (
+      this.props.navInfo.tab === 'settings' &&
+      this.props.navInfo.settingsSection === 'account'
+    ) {
+      mainContent = <AccountSettings />;
     }
 
     return (