feat(openchamber): hide voice settings in VSCode runtime

This commit is contained in:
Bohdan Triapitsyn
2026-02-10 13:28:19 +02:00
parent d663e3f82c
commit f76a3b35e7
2 changed files with 4 additions and 0 deletions
@@ -155,5 +155,8 @@ const NotificationSectionContent: React.FC = () => {
// Voice section: Language selection and continuous mode
const VoiceSectionContent: React.FC = () => {
if (isVSCodeRuntime()) {
return null;
}
return <VoiceSettings />;
};
@@ -62,6 +62,7 @@ const OPENCHAMBER_SECTION_GROUPS: SectionGroup[] = [
label: 'Voice',
items: ['Language', 'Continuous Mode'],
badge: 'experimental',
hideInVSCode: true,
},
];