diff --git a/packages/surveys/src/components/OpenTextQuestion.tsx b/packages/surveys/src/components/OpenTextQuestion.tsx index 9f39e8cb50..f72934305c 100644 --- a/packages/surveys/src/components/OpenTextQuestion.tsx +++ b/packages/surveys/src/components/OpenTextQuestion.tsx @@ -66,7 +66,7 @@ export default function OpenTextQuestion({ id={question.id} placeholder={question.placeholder} required={question.required} - value={value as string} + value={value ? (value as string) : ""} type={question.inputType} onInput={(e) => handleInputChange(e.currentTarget.value)} autoFocus={autoFocus}