diff --git a/src/components/views/elements/Validation.tsx b/src/components/views/elements/Validation.tsx index 7a8e47dfb6..35bf3a0456 100644 --- a/src/components/views/elements/Validation.tsx +++ b/src/components/views/elements/Validation.tsx @@ -75,7 +75,7 @@ export interface IValidationResult { * the overall validity and a feedback UI that can be rendered for more detail. */ export default function withValidation({ - description, hideDescriptionIfValid, deriveData, rules + description, hideDescriptionIfValid, deriveData, rules, }: IArgs) { return async function onValidate({ value, focused, allowEmpty = true }: IFieldState): Promise { if (!value && allowEmpty) {