fix: extended length of accept and cancel buttons text to 50 chars
This commit is contained in:
parent
77e5d4860d
commit
14cbd127c4
1 changed files with 2 additions and 2 deletions
|
|
@ -172,10 +172,10 @@ const TermsConditions = () => {
|
|||
text: Yup.string().required(),
|
||||
acceptButtonText: Yup.string()
|
||||
.required()
|
||||
.max(15, 'Too long'),
|
||||
.max(50, 'Too long'),
|
||||
cancelButtonText: Yup.string()
|
||||
.required()
|
||||
.max(15, 'Too long')
|
||||
.max(50, 'Too long')
|
||||
})
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue