Drizzle Zod refining not working?
Shouldn't this code for zod make an optional field
https://drizzle.run/t2zowcjw5f1xbb5ny7zq2j3n
firstName required?https://drizzle.run/t2zowcjw5f1xbb5ny7zq2j3n
firstNameconst insertUserSchema = createInsertSchema(users).extend({
firstName: z.string().min(1, { message: 'First Name is required' })
})