fix: remove endpoint validation
This commit is contained in:
parent
eeab2f4324
commit
7e8c49cf45
1 changed files with 1 additions and 4 deletions
|
|
@ -19,10 +19,7 @@ export default {
|
||||||
return Yup.object().shape({
|
return Yup.object().shape({
|
||||||
apiKey: Yup.string('The project ID must be a string')
|
apiKey: Yup.string('The project ID must be a string')
|
||||||
.max(100, 'The project ID is too long')
|
.max(100, 'The project ID is too long')
|
||||||
.required('The project ID is required'),
|
.required('The project ID is required')
|
||||||
endpoint: Yup.string('The endpoint must be a string')
|
|
||||||
.max(100, 'The endpoint is too long')
|
|
||||||
.required('The endpoint is required')
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue