Skip to content

Instantly share code, notes, and snippets.

@andreferi3
Last active May 2, 2020 16:40
Show Gist options
  • Select an option

  • Save andreferi3/d39892c9c876beef8409c575f85a7211 to your computer and use it in GitHub Desktop.

Select an option

Save andreferi3/d39892c9c876beef8409c575f85a7211 to your computer and use it in GitHub Desktop.
const Schema = Yup.object().shape({
password: Yup.string().required("This field is required"),
changepassword: Yup.string().when("password", {
is: val => (val && val.length > 0 ? true : false),
then: Yup.string().oneOf(
[Yup.ref("password")],
"Both password need to be the same"
)
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment