From 482ae57406ece59c70fb2675a140c4f0695c940f Mon Sep 17 00:00:00 2001 From: "dev.daminik00" Date: Wed, 8 Oct 2025 02:55:27 +0200 Subject: [PATCH] fix zod --- src/entities/user/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities/user/types.ts b/src/entities/user/types.ts index 3c92dbd..fde5592 100644 --- a/src/entities/user/types.ts +++ b/src/entities/user/types.ts @@ -16,7 +16,7 @@ const ProfileSchema = z.object({ address: z.string(), }) .optional(), - name: z.string(), + name: z.string().optional(), birthdate: z.string(), gender: z.string(), age: z.number(),