diff --git a/pro/src/components/IndividualOfferForm/Informations/validationSchema.ts b/pro/src/components/IndividualOfferForm/Informations/validationSchema.ts index 1766604af06..ed1608b7a51 100644 --- a/pro/src/components/IndividualOfferForm/Informations/validationSchema.ts +++ b/pro/src/components/IndividualOfferForm/Informations/validationSchema.ts @@ -9,7 +9,7 @@ export const getValidationSchema = (lastProvider?: string | null) => ({ .string() .matches(/^\d*$/, "L'EAN doit être composé de 13 chiffres") .test({ - message: "L'EAN doit être composé de 13 chiffres", + message: "L'EAN doit être composé de 13 chiffres.", test: (ean) => ean === undefined || ean.length === 13, }), speaker: yup.string(), diff --git a/pro/src/screens/IndividualOffer/DetailsScreen/validationSchema.ts b/pro/src/screens/IndividualOffer/DetailsScreen/validationSchema.ts index fa5e6c1cb57..85e48db4fa2 100644 --- a/pro/src/screens/IndividualOffer/DetailsScreen/validationSchema.ts +++ b/pro/src/screens/IndividualOffer/DetailsScreen/validationSchema.ts @@ -11,14 +11,14 @@ export const validationSchema = yup.object().shape({ .string() .matches(/^\d*$/, "L'EAN doit être composé de 13 chiffres") .test({ - message: "L'EAN doit être composé de 13 chiffres", + message: "L'EAN doit être composé de 13 chiffres.", test: (ean) => ean === undefined || ean.length === 13, }), eanSearch: yup .string() .matches(/^\d*$/, "L'EAN doit être composé de 13 chiffres") .test({ - message: "L'EAN doit être composé de 13 chiffres", + message: "L'EAN doit être composé de 13 chiffres.", test: (ean) => ean === undefined || ean.length === 13, }), speaker: yup.string(),