refactor(manual print): added a min length of 10 characters

This commit is contained in:
2025-09-18 11:00:18 -05:00
parent 360549aaf4
commit c892348d19

View File

@@ -244,7 +244,7 @@ export default function ManualPrintForm() {
//label="Comments" //label="Comments"
placeholder="add more info as needed." placeholder="add more info as needed."
{...(register("additionalComments"), {...(register("additionalComments"),
{ required: true })} { required: true, minLength: 10 })}
/> />
</div> </div>