diff --git a/src/pages/sponsors/sponsor-page/tabs/sponsor-forms-tab/components/customized-form/customized-form.js b/src/pages/sponsors/sponsor-page/tabs/sponsor-forms-tab/components/customized-form/customized-form.js index a1530e1c0..5c40fbe7f 100644 --- a/src/pages/sponsors/sponsor-page/tabs/sponsor-forms-tab/components/customized-form/customized-form.js +++ b/src/pages/sponsors/sponsor-page/tabs/sponsor-forms-tab/components/customized-form/customized-form.js @@ -19,7 +19,8 @@ import { addIssAfterDateFieldValidator, formMetafieldsValidation, opensAtValidation, - requiredStringValidation + requiredStringValidation, + requiredHTMLValidation } from "../../../../../../../utils/yup"; import MuiFormikTextField from "../../../../../../../components/mui/formik-inputs/mui-formik-textfield"; import useScrollToError from "../../../../../../../hooks/useScrollToError"; @@ -62,7 +63,7 @@ const CustomizedForm = ({ validationSchema: yup.object().shape({ name: requiredStringValidation(), code: requiredStringValidation(), - instructions: requiredStringValidation(), + instructions: requiredHTMLValidation(), opens_at: opensAtValidation(), expires_at: yup .date(T.translate("validation.date"))