Skip to content

Commit

Permalink
chore: made message optional
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Sep 23, 2024
1 parent 4fd3ea6 commit c9c66f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github/types/state-validation-payload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const validationErrorSchema = Type.Object({
});

export const pluginValidationResponseSchema = Type.Object({
message: Type.String(),
message: Type.Optional(Type.String()),
errors: Type.Optional(Type.Array(validationErrorSchema)),
});

Expand Down

0 comments on commit c9c66f7

Please sign in to comment.