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
Before posting an issue, read the FAQ and search the previous issues.
Description
Basically the title of the issue:
constformSchema=z.object({"orderby": z.boolean().default(true),// Set default value of `orderby` to `true`});consturl=newURL("http://test.com")// create an `URL` with no `searchParams` set.constform=awaitsuperValidate(url,zod(formSchema))// URL validation.console.log(form.data.orderby)// returns `false`