Skip to content

Commit

Permalink
Allow body to be nullable in GithubIssueSchema
Browse files Browse the repository at this point in the history
  • Loading branch information
0xRaduan committed Dec 11, 2024
1 parent 0968e43 commit 8cc8c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ export const GitHubIssueSchema = z.object({
created_at: z.string(),
updated_at: z.string(),
closed_at: z.string().nullable(),
body: z.string(),
body: z.string().nullable(),
});

// Pull Request related schemas
Expand Down

0 comments on commit 8cc8c6e

Please sign in to comment.