Skip to content

Commit 2dfec8e

Browse files
ci: apply automated fixes
1 parent 67a81b5 commit 2dfec8e

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

packages/react-table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@
7171
"peerDependencies": {
7272
"react": ">=18"
7373
}
74-
}
74+
}

packages/react-table/src/useLegacyTable.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,10 @@ export type LegacyHeaderGroup<TData extends RowData> = HeaderGroup<
302302
>
303303

304304
/** @deprecated Use ColumnDef<TFeatures, TData, TValue> with useTable instead. */
305-
export type LegacyColumnDef<TData extends RowData, TValue = unknown> =
306-
ColumnDef<StockFeatures, TData, TValue>
305+
export type LegacyColumnDef<
306+
TData extends RowData,
307+
TValue = unknown,
308+
> = ColumnDef<StockFeatures, TData, TValue>
307309

308310
/** @deprecated Use Table<TFeatures, TData> with useTable instead. */
309311
export type LegacyTable<TData extends RowData> = Table<StockFeatures, TData>

0 commit comments

Comments
 (0)