fix(settings): include the Session tabs toggle in the General page's visible list

The General section renders OpenChamberVisualSettings with an explicit
visibleSettings allowlist, so the new control was searchable but never
rendered.
This commit is contained in:
Bohdan Triapitsyn
2026-08-25 00:20:37 +03:00
parent ce90e7e24f
commit f40a247be9
@@ -152,6 +152,7 @@ const GeneralSectionContent: React.FC = () => {
{!isVSCode && <OpenChamberToolsSettings />}
<OpenChamberVisualSettings visibleSettings={[
'fileEditorKeymap',
...(!isVSCode ? ['sessionTabs' as const] : []),
'autoSaveEnabled',
'expandedEditorToolbar',
...(!isVSCode ? ['terminalQuickKeys' as const] : []),