From 99fb62cc681e4c006a26d6831ee0f75cab8ce7a5 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Mon, 9 Nov 2020 01:37:17 +0000 Subject: [PATCH] fix lint yet 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 35bf3a0456..c45a745918 100644 --- a/src/components/views/elements/Validation.tsx +++ b/src/components/views/elements/Validation.tsx @@ -33,7 +33,7 @@ interface IRule { interface IArgs { rules: IRule[]; description(this: T, derivedData: D): React.ReactChild; - hideDescriptionIfValid: Boolean; + hideDescriptionIfValid?: Boolean; deriveData?(data: Data): Promise; }