typo in the error message

there was a little typo
This commit is contained in:
Sebastien Dionne 2023-10-07 14:59:55 -04:00 committed by GitHub
parent ed95b8349e
commit 640692abc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => {
},
validationSchema: Yup.object({
requestName: Yup.string()
.min(1, 'must be atleast 1 characters')
.min(1, 'must be at least 1 characters')
.required('name is required')
.test({
name: 'requestName',