Skip to content
Snippets Groups Projects
Unverified Commit c536ca38 authored by Ahmad Farhat's avatar Ahmad Farhat Committed by GitHub
Browse files

Increased room limit max to 10000 (#5530)

parent c8b70d13
Branches master
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ export function useEditRoleLimitFormValidation() { ...@@ -25,7 +25,7 @@ export function useEditRoleLimitFormValidation() {
value: yup.number().required('forms.validations.role.limit.required') value: yup.number().required('forms.validations.role.limit.required')
.typeError('forms.validations.role.type.error') .typeError('forms.validations.role.type.error')
.min(0, 'forms.validations.role.limit.min') .min(0, 'forms.validations.role.limit.min')
.max(100, 'forms.validations.role.limit.max'), .max(10000, 'forms.validations.role.limit.max'),
})), []); })), []);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment