Use nullable

This commit is contained in:
Mel O'Hagan 2022-10-27 14:45:30 +01:00
parent 91fe9ff387
commit a322f13b59
1 changed files with 3 additions and 5 deletions

View File

@ -28,15 +28,13 @@ export const createValidationStore = () => {
let propertyValidator
switch (type) {
case "number":
propertyValidator = number().transform(value =>
isNaN(value) ? undefined : value
)
propertyValidator = number().nullable()
break
case "email":
propertyValidator = string().email()
propertyValidator = string().email().nullable()
break
default:
propertyValidator = string()
propertyValidator = string().nullable()
}
if (required) {