From 60d5cb87a11cdc975f373076be571ccc0b351e08 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 16 Sep 2021 18:28:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Possibly=20fix=20#5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/forms/FormPair.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/forms/FormPair.tsx b/src/components/forms/FormPair.tsx index 9b86185..7d7b77e 100644 --- a/src/components/forms/FormPair.tsx +++ b/src/components/forms/FormPair.tsx @@ -17,7 +17,7 @@ export interface FormPairProps extends Types.BluelibProps { } -export function FormPair({id, label, input, validity, bluelibClassNames, customColor, disabled}: FormPairProps): JSX.Element { +export function FormPair({id, label, input, validity, bluelibClassNames, customColor}: FormPairProps): JSX.Element { if(!id) { id = UUID.v4() } @@ -43,7 +43,6 @@ export function FormPair({id, label, input, validity, bluelibClassNames, customC id: id, bluelibClassNames: mergeClassNames(bluelibClassNames, validityClass), customColor: customColor, - disabled: disabled, }) return <>