Nazar

Results 4 comments of Nazar

I am having the same errors trying to access `address.data` on the last line ``` const address = addressSchema.safeParse(req.body); if (!address.success) { res.status(400).end({ error: address.error }); resolve(); } const parcedAddress:...

Hi, @Daniel-Griffiths! I am using `zod v3.14.5` and have no issues using the following: ``` const AddressSchema = z .object({ id: z.string(), street: z.string(), number: z.string() }) // parse &...

I changed nothing but got this error from my github actions wf. Does it have something to do with the newest 2fa rules of github?