Skip to content

Commit

Permalink
Merge pull request #2736 from glific/quick-reply-limit
Browse files Browse the repository at this point in the history
Quick reply limit
  • Loading branch information
mdshamoon authored Feb 4, 2024
2 parents 787f090 + d91712d commit 1264c6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Template/Form/Template.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ const Template = ({
validation.templateButtons = Yup.array()
.of(
Yup.object().shape({
value: Yup.string().required(t('Required')),
value: Yup.string().max(25, 'Only 25 characters are allowed.').required(t('Required')),
})
)
.min(1)
Expand Down

0 comments on commit 1264c6d

Please sign in to comment.