Skip to content

Commit

Permalink
fix: wrong boolean trigger schema type
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelOsborne committed Jan 27, 2025
1 parent 4e8e726 commit 067ed94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export const StringTriggerSchema = object({
});

export const BooleanTriggerSchema = object({
type: string('String'),
type: string('Boolean'),
name: string(),
value: boolean(),
});
Expand Down

0 comments on commit 067ed94

Please sign in to comment.