diff --git a/src/components/common/form/FormRichTextField.tsx b/src/components/common/form/FormRichTextField.tsx index 1f6b4ce0b..729d496c3 100644 --- a/src/components/common/form/FormRichTextField.tsx +++ b/src/components/common/form/FormRichTextField.tsx @@ -34,7 +34,9 @@ export default function FormRichTextField({ name }: FormRichTextFieldProps) { const { t } = useTranslation() const [, meta] = useField(name) const helperText = meta.touched ? translateError(meta.error as TranslatableField, t) : '' - const [useMdxEditor, setUseMdxEditor] = React.useState(true) + // disabling MDXEditor integration. + // The markdown syntax does not support requirements like image and text alignment, colors, etc. + const [useMdxEditor, setUseMdxEditor] = React.useState(false) return (