diff --git a/.changeset/question-custom-answer-duplicate.md b/.changeset/question-custom-answer-duplicate.md new file mode 100644 index 00000000000..d5f10217329 --- /dev/null +++ b/.changeset/question-custom-answer-duplicate.md @@ -0,0 +1,5 @@ +--- +"kilo-code": patch +--- + +Fix duplicate text shown when typing a custom answer in the question tool. The preview text above the input field is now hidden while editing, so only the input value is visible. diff --git a/packages/kilo-vscode/webview-ui/src/components/chat/QuestionDock.tsx b/packages/kilo-vscode/webview-ui/src/components/chat/QuestionDock.tsx index 6300796229b..36c21303b1f 100644 --- a/packages/kilo-vscode/webview-ui/src/components/chat/QuestionDock.tsx +++ b/packages/kilo-vscode/webview-ui/src/components/chat/QuestionDock.tsx @@ -370,9 +370,11 @@ export const QuestionDock: Component<{ request: QuestionRequest }> = (props) => {language.t("ui.messagePart.option.typeOwnAnswer")} - - {input() || language.t("ui.question.custom.placeholder")} - + + + {input() || language.t("ui.question.custom.placeholder")} + +