diff --git a/src/projects/core/schemas.ts b/src/projects/core/schemas.ts index e421d6f..19d0940 100644 --- a/src/projects/core/schemas.ts +++ b/src/projects/core/schemas.ts @@ -32,7 +32,7 @@ export type ProjectOrg = z.infer; export const projectDetailsSchema = z .object({ - organization: projectOrgSchema.nullable(), + organization: projectOrgSchema.nullable().optional(), }) .merge(projectAllInfoSchema);