Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBurgess committed Jan 3, 2025
1 parent 2193843 commit 8d3bd3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const TableSettingsColumns = ({
leafColumns,
}: {
name: string;
leafColumns: Column<RowData, RowData>[];
leafColumns: Column<RowData>[];
}) => {
const { update } = useTableConfig(name);
const [search, setSearch] = useState("");
Expand Down Expand Up @@ -139,7 +139,7 @@ const TableSettings = ({
leafColumns,
}: {
name: string;
leafColumns: Column<RowData, RowData>[];
leafColumns: Column<RowData>[];
}) => {
return <TableSettingsColumns name={name} leafColumns={leafColumns} />;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const TableSettingsSidePanel = ({
leafColumns,
}: {
panelName: string;
leafColumns: Column<RowData, RowData>[];
leafColumns: Column<RowData>[];
}) => {
const { closeSidePanel } = useDashboardPanelDetail();
return (
Expand Down

0 comments on commit 8d3bd3c

Please sign in to comment.