We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f331b3c commit b4da706Copy full SHA for b4da706
src/modules/settings/ChatbotSettings.tsx
@@ -38,7 +38,6 @@ const useChatbotSetting = () => {
38
39
const saveSetting = useCallback(
40
async (data: ChatbotPromptSettings): Promise<void> => {
41
- // setting does not exist
42
if (setting) {
43
await patchSetting({
44
id: setting.id,
@@ -133,7 +132,7 @@ function ChatbotSettings() {
133
132
<Stack direction="column" spacing={1}>
134
<Stack direction="column">
135
<Stack direction="row" spacing={1}>
136
- <FormLabel htmlFor="chatbotName">
+ <FormLabel>
137
<Typography>{t('CHATBOT_NAME_LABEL')}:</Typography>
138
</FormLabel>
139
<Typography>{chatbotName}</Typography>
0 commit comments