From 38a877fa8d116517d1d2be46b07f748fa912b15f Mon Sep 17 00:00:00 2001 From: sua yoo Date: Tue, 16 Jul 2024 12:57:12 -0700 Subject: [PATCH] Update frontend/src/utils/form.ts Co-authored-by: Emma Segal-Grossman --- frontend/src/utils/form.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/form.ts b/frontend/src/utils/form.ts index d0aab22c..56788c16 100644 --- a/frontend/src/utils/form.ts +++ b/frontend/src/utils/form.ts @@ -54,7 +54,7 @@ export function maxLengthValidator(maxLength: number): MaxLengthValidator { el.setCustomValidity( isInvalid - ? msg(str`Please shorten this text to ${maxLength} or less characters.`) + ? msg(str`Please shorten this text to ${maxLength} or fewer characters.`) : "", );