You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition, the mixed type now requires a Type definition in order to be used with the new ObjectSchema.
Ex: yup.lazy(() => yup.mixed()) as never => yup.lazy(() => yup.mixed<T>())
The text was updated successfully, but these errors were encountered:
There are a couple of breaking changes that seem to break validation generation.
Ex. SchemaOf no longer exists and has been migrated to ObjectSchema.
Ref: https://github.com/jquense/yup/releases/tag/v1.0.0-alpha.3
In addition, the mixed type now requires a Type definition in order to be used with the new ObjectSchema.
Ex:
yup.lazy(() => yup.mixed()) as never => yup.lazy(() => yup.mixed<T>())
The text was updated successfully, but these errors were encountered: