0

how to wait seconds to validate field with yup? I need city code to wait a few seconds because of the state field

const schema = yup.object().shape({
 state: yup.number().nullable().required('required'),
 city: yup.number().nullable().required('required')
})

0 Answers0