Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
elie222 committed Jan 9, 2025
1 parent 3b9cb9b commit 83ae7ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/web/utils/actions/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ export const createRuleBody = z.object({
),
conditionalOperator: z
.enum([LogicalOperator.AND, LogicalOperator.OR])
.default(LogicalOperator.AND),
.default(LogicalOperator.AND)
.optional(),
});
export type CreateRuleBody = z.infer<typeof createRuleBody>;

Expand Down

1 comment on commit 83ae7ba

@vercel
Copy link

@vercel vercel bot commented on 83ae7ba Jan 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.