Skip to content

Commit

Permalink
ignore unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
briangann committed Mar 29, 2024
1 parent 2bd26f3 commit 50d3ef7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/options/ColumnStylesEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ColumnStyleType, ColumnStyling } from 'types';
export function ColumnStylesEditor(props: StandardEditorProps<ColumnStyling[]>) {
const { onChange, value = [] } = props;

// @ts-ignore
function handleRemoveColumnStyle(index: number) {
onChange([...value.slice(0, index), ...value.slice(index + 1)]);
}
Expand Down

0 comments on commit 50d3ef7

Please sign in to comment.