From c892348d198e053b553058b0b57f11da1c9d0b5e Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Thu, 18 Sep 2025 11:00:18 -0500 Subject: [PATCH] refactor(manual print): added a min length of 10 characters --- .../production/ocp/ManualPrinting/ManualPrintForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/production/ocp/ManualPrinting/ManualPrintForm.tsx b/frontend/src/components/production/ocp/ManualPrinting/ManualPrintForm.tsx index 6780665..7578728 100644 --- a/frontend/src/components/production/ocp/ManualPrinting/ManualPrintForm.tsx +++ b/frontend/src/components/production/ocp/ManualPrinting/ManualPrintForm.tsx @@ -244,7 +244,7 @@ export default function ManualPrintForm() { //label="Comments" placeholder="add more info as needed." {...(register("additionalComments"), - { required: true })} + { required: true, minLength: 10 })} />