remix-params-helper
remix-params-helper copied to clipboard
Unexpected type ZodAny using instanceof
I have a schema for uploading files using the remix fileuploader api.
const schema = z.object({
files: z.array(z.instanceof(NodeOnDiskFile),
});
Trying to parse the form data with this schema throws Unexpected type ZodAny for key files