diff --git a/app/src/components/forms/QuestionForm.tsx b/app/src/components/forms/QuestionForm.tsx index 1f1ddeb..b2c3270 100644 --- a/app/src/components/forms/QuestionForm.tsx +++ b/app/src/components/forms/QuestionForm.tsx @@ -88,11 +88,17 @@ export const QuestionForm: FC = ({ const [formData, setFormData] = useState(() => { if (defaultValues && operationType === "update") { const { files: _, ...rest } = defaultValues; - return rest; + return { + ...rest, + content: rest.content.length + ? rest.content + : "Please see the attachments for the question that I have, thank you!", + }; } else { return { title: "", - content: "", + content: + "Please see the attachments for the question that I have, thank you!", categories: [], anonymous: false, };