diff --git a/src/components/Asset/Edit/_validation.ts b/src/components/Asset/Edit/_validation.ts index 1bb405bcc..52b9faf07 100644 --- a/src/components/Asset/Edit/_validation.ts +++ b/src/components/Asset/Edit/_validation.ts @@ -10,8 +10,8 @@ export const validationSchema = Yup.object().shape({ files: Yup.array() .of( Yup.object().shape({ - url: Yup.string().url('Must be a valid URL.').required('Required'), - valid: Yup.boolean().isTrue().required('File must be valid.') + url: Yup.string().url('Must be a valid URL.'), + valid: Yup.boolean().isTrue() }) ) .nullable(),