Skip to content

1.2.20

Compare
Choose a tag to compare
@pedro-lb pedro-lb released this 07 May 15:07
· 226 commits to master since this release

πŸ“ˆ Improvements

  • πŸ“ˆ The property isValid is now available in formikForm, returned by useFormup hook. You can use it to quickly check if your form is valid =).

Here's an example:

<button disabled={!formikForm.isValid}>
  Submit
</button>