Skip to content

Commit

Permalink
fix: update post schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zacjones93 committed Jan 3, 2025
1 parent e6b8f16 commit 733f879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/[post].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const PostSchema = z.object({
organizationId: z.string().nullish(),
createdByOrganizationMembershipId: z.string().nullish(),
name: z.string().nullish(),
image: z.string().optional(),
image: z.string().nullish(),
})
export type Post = z.infer<typeof PostSchema>

Expand Down

0 comments on commit 733f879

Please sign in to comment.