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
If your intent is for all the items to be validated with the same schema, then your schema is incorrect as your items is configured using a tuple validation schema which will validate the array on a position basis.
Instead of "items": [] in your schema you should be using "items": {}.
Only the first element of an array is validated, see "isInValidNotOk".
The text was updated successfully, but these errors were encountered: