From 01709fd961ea55f9eccb00b62dda32cfaf5316b9 Mon Sep 17 00:00:00 2001 From: pbardy2000 <146740183+pbardy2000@users.noreply.github.com> Date: Tue, 19 Nov 2024 11:34:45 +0000 Subject: [PATCH] feat(cb2-14457): fix spelling --- .../adr-section-edit/adr-section-edit.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/forms/custom-sections/adr-section/adr-section-edit/adr-section-edit.component.ts b/src/app/forms/custom-sections/adr-section/adr-section-edit/adr-section-edit.component.ts index efacc4a3d..7347759d2 100644 --- a/src/app/forms/custom-sections/adr-section/adr-section-edit/adr-section-edit.component.ts +++ b/src/app/forms/custom-sections/adr-section/adr-section-edit/adr-section-edit.component.ts @@ -194,11 +194,11 @@ export class AdrSectionEditComponent implements OnInit, OnDestroy { // Miscellaneous techRecord_adrDetails_newCertificateRequested: this.fb.control(false), techRecord_adrDetails_additionalExaminerNotes_note: this.fb.control(null, [ - this.commonValidators.maxLength(1024, 'Additional Examiner Notes must be less han or equal to 1024 characters'), + this.commonValidators.maxLength(1024, 'Additional Examiner Notes must be less than or equal to 1024 characters'), ]), techRecord_adrDetails_additionalExaminerNotes: this.fb.control(null), techRecord_adrDetails_adrCertificateNotes: this.fb.control(null, [ - this.commonValidators.maxLength(1500, 'ADR Certificate Notes must be less han or equal to 1500 characters'), + this.commonValidators.maxLength(1500, 'ADR Certificate Notes must be less than or equal to 1500 characters'), ]), });