DWJ
DWJ
Export all the images in a folder for vite and bundlers.
# problem If the schema is optional with a min length it won't accept it when you type something and then backspace it until empty again. ``` z.object({ text: z.string().min(1).optional()...
Throws error 'parent.value is undefined' for optional array fields like z.string().array().optional(). ``` import ZodBridge from "uniforms-bridge-zod"; import { AutoForm } from "uniforms-mui"; ```
# request Can we add showInlineError to unstyled? Maybe easier to read than list of errors at the bottom? ``` Required Required Required Required ``` # workaround Add custom message...
# problem When we have a nullable() or nullish() zod field it throws 'unknown type'. We can't use our main zod types for uniforms directly because we use null fields...
Our API stores timestamps (createdAt and updatedAt) as epoch seconds instead of milliseconds. Additionally, the API returns its data using camelCase (updatedAt) rather than snake_case (updated_at). This discrepancy caused us...