We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a866a1c commit f07c7e6Copy full SHA for f07c7e6
webview-ui/src/components/chat/ChatRow.tsx
@@ -252,7 +252,7 @@ export const ChatRowContent = ({
252
}, [message.ask, message.say, message.text])
253
254
const followUpData = useMemo(() => {
255
- if (message.type === "ask" && message.ask === "followup" && message.partial === false) {
+ if (message.type === "ask" && message.ask === "followup" && !message.partial) {
256
return JSON.parse(message.text || "{}")
257
}
258
return null
0 commit comments