Skip to content

Commit

Permalink
fix(a2-1793): increase character count for interested party comments
Browse files Browse the repository at this point in the history
  • Loading branch information
BenSurgisonPINS committed Dec 16, 2024
1 parent 9caee85 commit 098b18b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const ruleComments = () =>
.notEmpty()
.withMessage('Enter your comments')
.bail()
.isLength({ min: 1, max: 1000 })
.withMessage('Comments must be 1000 characters or less');
.isLength({ min: 1, max: 8000 })
.withMessage('Comments must be 8000 characters or less');

const ruleCommentsConfirmation = () =>
body('comments-confirmation')
Expand Down

0 comments on commit 098b18b

Please sign in to comment.