Skip to content

Commit

Permalink
fix(branch): default branch ticket sep (#105)
Browse files Browse the repository at this point in the history
During the valibot refactor, the wrong separator was set as the default for branch_ticket
  • Loading branch information
Everduin94 authored May 8, 2024
1 parent 8754f52 commit d28f16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/valibot-state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const Config = v.object({
v.object({
enable: v.optional(v.boolean(), true),
required: v.optional(v.boolean(), false),
separator: v.optional(v.picklist(["/", "-", "_"]), "/"),
separator: v.optional(v.picklist(["/", "-", "_"]), "-"),
}),
{},
),
Expand Down

0 comments on commit d28f16e

Please sign in to comment.