Skip to content

v0.8.7

Compare
Choose a tag to compare
@jaredpalmer jaredpalmer released this 31 Jul 15:43
· 1663 commits to main since this release

tl;dr

validationSchema can now alternatively accept a function that returns a Yup schema (instead of just a schema)

Old:
validationSchema?: Schema

New:
validationSchema?: Schema | ((props: Props) => Schema)