diff --git a/src/lib/core/components/Form/Controller/utils.tsx b/src/lib/core/components/Form/Controller/utils.tsx index 7fe2390d..e1dda489 100644 --- a/src/lib/core/components/Form/Controller/utils.tsx +++ b/src/lib/core/components/Form/Controller/utils.tsx @@ -195,7 +195,7 @@ export const getValidate = < }: GetValidateParams) => { let validate: (value?: Value) => ValidateError = () => undefined; - if (isCorrectConfig(config) && isCorrectSpec(spec)) { + if (isCorrectConfig(config) && isCorrectSpec(spec) && !spec.viewSpec.hidden) { const {validators} = config[spec.type] as unknown as | TypeConfig | Record;