aboutsummaryrefslogtreecommitdiffstats
path: root/packages/meshbay-hub/src/meshbay_hub/static/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static/app.js')
-rw-r--r--packages/meshbay-hub/src/meshbay_hub/static/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/app.js b/packages/meshbay-hub/src/meshbay_hub/static/app.js
index 044457b..58ffe8e 100644
--- a/packages/meshbay-hub/src/meshbay_hub/static/app.js
+++ b/packages/meshbay-hub/src/meshbay_hub/static/app.js
@@ -16,6 +16,7 @@ import {
refreshAccessToken,
} from './hub-client.js';
import { GroupPage } from './group-page.js';
+import { APPS } from './apps.js';
// ── Constants ────────────────────────────────────────────────────────────────
@@ -1731,8 +1732,7 @@ function SettingsPage({ user, theme, onThemeChange, groups, onPrefsChange }) {
<span class="settings-label">${t('settings.default_tab')}</span>
<select class="settings-select" value=${defaultTab}
onChange=${changeDefaultTab}>
- <option value="chat">${t('group.tab_chat')}</option>
- <option value="files">${t('group.tab_files')}</option>
+ ${APPS.map((a) => html`<option key=${a.key} value=${a.key}>${t(a.labelKey)}</option>`)}
<option value="settings">${t('group.tab_settings')}</option>
</select>
</div>