search

Home  >  Q&A  >  body text

Image validation does not work with yup validate

I'm trying to use yup for verification. Required does not apply to images.

image: yup.string().required("required"),

I am using formik as required fields. This works for every field of form, but not for images. I have initialized the initial value:

const initialValues = {
   image: "",
};

P粉738821035P粉738821035227 days ago446

reply all(1)I'll reply

  • P粉741223880

    P粉7412238802024-03-31 15:21:17

    Use this yup verification for file upload

    attachment: Yup.mixed()
    .test(
      'FILE_SIZE',
      'File is required',
      value => value && value.size >= 10,
    )

    reply
    0
  • Cancelreply