From ef09ff661593aa52e0b151cf0e7af87142bc8b8e Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Mon, 9 Nov 2020 01:16:58 +0000 Subject: [PATCH] lint again --- src/components/views/elements/Validation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {