Fix: Empty starter prompt creating empty bubbles (#2139)

Fix empty starter prompt creating empty bubbles
This commit is contained in:
Ilango
2024-04-09 20:04:49 +05:30
committed by GitHub
parent 1129782758
commit 20a500efb5
@@ -558,7 +558,7 @@ export const ChatMessage = ({ open, chatflowid, isDialog, previews, setPreviews
inputFields.push(config.starterPrompts[key]) inputFields.push(config.starterPrompts[key])
} }
}) })
setStarterPrompts(inputFields) setStarterPrompts(inputFields.filter((field) => field.prompt !== ''))
} }
if (config.chatFeedback) { if (config.chatFeedback) {
setChatFeedbackStatus(config.chatFeedback.status) setChatFeedbackStatus(config.chatFeedback.status)