diff --git a/src/components/Validations/Validations.js b/src/components/Validations/Validations.js index caef07146..70616553b 100644 --- a/src/components/Validations/Validations.js +++ b/src/components/Validations/Validations.js @@ -12,9 +12,6 @@ const validate = (validations) => { const check = values.reduce( (acc, [key, value]) => { - // 'unique' validation is a special case where there is no value - if (key === 'unique') { return acc; } - if (!isNull(value)) { return acc; } return [...acc, key]; },