Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits committed Apr 3, 2024
1 parent 16eba1d commit c42d124
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/components/FormElements/PositiveIntPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ interface PositiveIntPickerProps extends Omit<InputProps, "fieldSize"> {
value: string;
placeholder?: string;
error: string | undefined;
// eslint-disable-next-line no-unused-vars
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
}

Expand Down
1 change: 0 additions & 1 deletion src/components/FormElements/TextPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ interface TextPickerProps extends Omit<InputProps, "fieldSize"> {
value: string;
placeholder?: string;
error: string | undefined;
// eslint-disable-next-line no-unused-vars
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
}

Expand Down
1 change: 0 additions & 1 deletion src/components/FormElements/XdrPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ interface XdrPickerProps extends Omit<TextareaProps, "fieldSize"> {
value: string;
placeholder?: string;
error: string | undefined;
// eslint-disable-next-line no-unused-vars
onChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void;
}

Expand Down
1 change: 0 additions & 1 deletion src/components/formComponentTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit c42d124

Please sign in to comment.