diff --git a/src/pcb/pcb_fabrication_note_path.ts b/src/pcb/pcb_fabrication_note_path.ts index 1032ead..ab675f5 100644 --- a/src/pcb/pcb_fabrication_note_path.ts +++ b/src/pcb/pcb_fabrication_note_path.ts @@ -11,7 +11,7 @@ export const pcb_fabrication_note_path = z layer: visible_layer, route: z.array(point), stroke_width: length, - color: z.string().optional() + color: z.string().optional(), }) .describe( "Defines a fabrication path on the PCB for fabricators or assemblers", diff --git a/src/pcb/pcb_fabrication_note_text.ts b/src/pcb/pcb_fabrication_note_text.ts index e73a492..7db9d29 100644 --- a/src/pcb/pcb_fabrication_note_text.ts +++ b/src/pcb/pcb_fabrication_note_text.ts @@ -15,7 +15,7 @@ export const pcb_fabrication_note_text = z anchor_alignment: z .enum(["center", "top_left", "top_right", "bottom_left", "bottom_right"]) .default("center"), - color: z.string().optional() + color: z.string().optional(), }) .describe( "Defines a fabrication note in text on the PCB, useful for leaving notes for assemblers or fabricators",