fix: build error jsonSchema metadata not nullable
parent
9459b9048d
commit
4eccc8a74b
|
@ -93,7 +93,7 @@ const schemaUserEditParams = z.object({
|
|||
.optional()
|
||||
.nullable(),
|
||||
locale: z.nativeEnum(locales).optional().nullable(),
|
||||
metadata: jsonSchema.or(z.null()),
|
||||
metadata: jsonSchema,
|
||||
});
|
||||
|
||||
// @note: These are the values that are editable via PATCH method on the user Model,
|
||||
|
|
Loading…
Reference in New Issue