Skip to content

Commit

Permalink
fix: raise area description character limit from 3500 to 10000 (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlam authored Oct 9, 2024
1 parent 949d4e7 commit 870039e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/edit/EditAreaForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
}
}

Expand Down

0 comments on commit 870039e

Please sign in to comment.