Skip to content

Commit

Permalink
Increased room limit max to 10000 (#5530)
Browse files Browse the repository at this point in the history
  • Loading branch information
farhatahmad authored Nov 20, 2023
1 parent c8b70d1 commit c536ca3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useEditRoleLimitFormValidation() {
value: yup.number().required('forms.validations.role.limit.required')
.typeError('forms.validations.role.type.error')
.min(0, 'forms.validations.role.limit.min')
.max(100, 'forms.validations.role.limit.max'),
.max(10000, 'forms.validations.role.limit.max'),
})), []);
}

Expand Down

0 comments on commit c536ca3

Please sign in to comment.