|
@@ -62,7 +62,7 @@ export const topicFormValidationSchema = yup.object().shape({
|
|
|
customParams: yup.array().of(
|
|
|
yup.object().shape({
|
|
|
name: yup.string().required(),
|
|
|
- value: yup.string().required(),
|
|
|
+ value: yup.string().required('Value is required'),
|
|
|
})
|
|
|
),
|
|
|
});
|