From 870039e42602ed5cd6fe3a3984e602e275f7d8fd Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 9 Oct 2024 14:13:53 -0400 Subject: [PATCH] fix: raise area description character limit from 3500 to 10000 (#1173) --- src/components/edit/EditAreaForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/edit/EditAreaForm.tsx b/src/components/edit/EditAreaForm.tsx index fbe5a3911..066145f54 100644 --- a/src/components/edit/EditAreaForm.tsx +++ b/src/components/edit/EditAreaForm.tsx @@ -35,8 +35,8 @@ export const AREA_LATLNG_FORM_VALIDATION_RULES: RulesType = { export const AREA_DESCRIPTION_FORM_VALIDATION_RULES: RulesType = { maxLength: { - value: 3500, - message: 'Maximum 3500 characters.' + value: 10000, + message: 'Maximum 10,000 characters.' } }