From c42d124b540b16ac517e3e0a756ec0f49d6f20da Mon Sep 17 00:00:00 2001 From: Iveta Date: Wed, 3 Apr 2024 15:04:57 -0400 Subject: [PATCH] Cleanup --- src/components/FormElements/PositiveIntPicker.tsx | 1 - src/components/FormElements/TextPicker.tsx | 1 - src/components/FormElements/XdrPicker.tsx | 1 - src/components/formComponentTemplate.tsx | 1 - 4 files changed, 4 deletions(-) diff --git a/src/components/FormElements/PositiveIntPicker.tsx b/src/components/FormElements/PositiveIntPicker.tsx index a5404493..a1d322ee 100644 --- a/src/components/FormElements/PositiveIntPicker.tsx +++ b/src/components/FormElements/PositiveIntPicker.tsx @@ -9,7 +9,6 @@ interface PositiveIntPickerProps extends Omit { value: string; placeholder?: string; error: string | undefined; - // eslint-disable-next-line no-unused-vars onChange: (e: React.ChangeEvent) => void; } diff --git a/src/components/FormElements/TextPicker.tsx b/src/components/FormElements/TextPicker.tsx index 93ac7063..2adf54f0 100644 --- a/src/components/FormElements/TextPicker.tsx +++ b/src/components/FormElements/TextPicker.tsx @@ -9,7 +9,6 @@ interface TextPickerProps extends Omit { value: string; placeholder?: string; error: string | undefined; - // eslint-disable-next-line no-unused-vars onChange: (e: React.ChangeEvent) => void; } diff --git a/src/components/FormElements/XdrPicker.tsx b/src/components/FormElements/XdrPicker.tsx index d765fe27..a75ee44d 100644 --- a/src/components/FormElements/XdrPicker.tsx +++ b/src/components/FormElements/XdrPicker.tsx @@ -9,7 +9,6 @@ interface XdrPickerProps extends Omit { value: string; placeholder?: string; error: string | undefined; - // eslint-disable-next-line no-unused-vars onChange: (e: React.ChangeEvent) => void; } diff --git a/src/components/formComponentTemplate.tsx b/src/components/formComponentTemplate.tsx index 6c6871ca..d8e8d3a3 100644 --- a/src/components/formComponentTemplate.tsx +++ b/src/components/formComponentTemplate.tsx @@ -36,7 +36,6 @@ type TemplateRenderOrderProps = { type TemplateRenderIncludeFailedProps = { value: string | undefined; - // eslint-disable-next-line no-unused-vars onChange: (optionId: string | undefined, optionValue?: boolean) => void; isRequired?: boolean; };