Skip to content

Commit

Permalink
fix(#163) - removed max limit on request names
Browse files Browse the repository at this point in the history
  • Loading branch information
helloanoop committed Dec 1, 2024
1 parent b4ea101 commit eb6944a
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const RenameCollection = ({ collection, onClose }) => {
validationSchema: Yup.object({
name: Yup.string()
.min(1, 'must be at least 1 character')
.max(50, 'must be 50 characters or less')
.required('name is required')
}),
onSubmit: (values) => {
Expand Down

0 comments on commit eb6944a

Please sign in to comment.