Async form validation with yup of the "username" field works perfectly in v2.18.7 - by entering a 4-letter word for example, after one second you get a "username already exists" error underneath the field, as expected.
However when we use v2.19.2, no validation of the "username" field works - neither the async nor the min length one.
On my local dev, I get this error in the console in v2.19.2 when I leave the field:
Uncaught (in promise) Error: Validation test of type: "duplicate-username" returned a Promise during a synchronous validate. This test will finish after the validate call has returned
Environment
Version
v2.19.2
Reproduction
This is the same page with @nuxt/ui v2.19.2 : https://stackblitz.com/edit/nuxt-ui-jxfvsf?file=pages%2Findex.vue (validation doesn't work)
This is the same page with @nuxt/ui v2.18.7 : https://stackblitz.com/edit/nuxt-ui-np2mhw?file=pages%2Findex.vue (validation works)
Description
Async form validation with yup of the "username" field works perfectly in v2.18.7 - by entering a 4-letter word for example, after one second you get a "username already exists" error underneath the field, as expected.
However when we use v2.19.2, no validation of the "username" field works - neither the async nor the min length one.
On my local dev, I get this error in the console in v2.19.2 when I leave the field:
Additional context
No response
Logs