balibabu commited on
Commit
47aa5d5
·
1 Parent(s): 98d8f14

feat: Comment out tts item #2088 (#2232)

Browse files

### What problem does this PR solve?

feat: Comment out tts item #2088
### Type of change


- [x] New Feature (non-breaking change which adds functionality)

web/src/pages/chat/chat-configuration-modal/assistant-setting.tsx CHANGED
@@ -99,7 +99,7 @@ const AssistantSetting = ({ show }: ISegmentedContentProps) => {
99
  >
100
  <Switch />
101
  </Form.Item>
102
- <Form.Item
103
  label={t('tts')}
104
  valuePropName="checked"
105
  name={['prompt_config', 'tts']}
@@ -107,7 +107,7 @@ const AssistantSetting = ({ show }: ISegmentedContentProps) => {
107
  initialValue={false}
108
  >
109
  <Switch />
110
- </Form.Item>
111
  <KnowledgeBaseItem></KnowledgeBaseItem>
112
  </section>
113
  );
 
99
  >
100
  <Switch />
101
  </Form.Item>
102
+ {/* <Form.Item
103
  label={t('tts')}
104
  valuePropName="checked"
105
  name={['prompt_config', 'tts']}
 
107
  initialValue={false}
108
  >
109
  <Switch />
110
+ </Form.Item> */}
111
  <KnowledgeBaseItem></KnowledgeBaseItem>
112
  </section>
113
  );