Skip to content

Commit

Permalink
[sparkle] fix: Use any type for cell values (#6897)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdraier authored Aug 23, 2024
1 parent 7c5eca0 commit 8e1d57e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparkle/src/components/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface ColumnBreakpoint {

interface DataTableProps<TData extends TBaseData> {
data: TData[];
columns: ColumnDef<TData, string & number>[];
columns: ColumnDef<TData, any>[]; // eslint-disable-line @typescript-eslint/no-explicit-any
className?: string;
filter?: string;
filterColumn?: string;
Expand Down

0 comments on commit 8e1d57e

Please sign in to comment.