Skip to content

Commit

Permalink
fix: schema validation error in project-details org prop
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshift committed Nov 13, 2024
1 parent 1c71270 commit fd7c059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/core/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type ProjectOrg = z.infer<typeof projectOrgSchema>;

export const projectDetailsSchema = z
.object({
organization: projectOrgSchema.nullable(),
organization: projectOrgSchema.nullable().optional(),
})
.merge(projectAllInfoSchema);

Expand Down

0 comments on commit fd7c059

Please sign in to comment.