Skip to content

Commit

Permalink
fix: Merge pull request #5 from DamilolaAlao/feature/adding-pill-support
Browse files Browse the repository at this point in the history
feature: added pill shape
  • Loading branch information
seveibar authored Jun 27, 2024
2 parents 6fc9dae + 225cbb2 commit 7d18715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pcb/pcb_plated_hole.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const pcb_plated_hole = z
.or(
z.object({
type: z.literal("pcb_plated_hole"),
shape: z.literal("oval"),
shape: z.enum(["oval", "pill"]),
outer_width: z.number(),
outer_height: z.number(),
hole_width: z.number(),
Expand Down

0 comments on commit 7d18715

Please sign in to comment.