Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jul 20, 2024
1 parent c8ccb58 commit 2b3bb36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function column_getCanResize<
TFeatures extends TableFeatures,
TData extends RowData,
TValue extends CellData = CellData,
>( column: Column<TFeatures, TData, TValue>, table: Table<TFeatures, TData>,) {
>(column: Column<TFeatures, TData, TValue>, table: Table<TFeatures, TData>) {
return (
(column.columnDef.enableResizing ?? true) &&
(table.options.enableColumnResizing ?? true)
Expand All @@ -34,7 +34,7 @@ export function column_getIsResizing<
TFeatures extends TableFeatures,
TData extends RowData,
TValue extends CellData = CellData,
>(column: Column<TFeatures, TData, TValue>, table: Table<TFeatures, TData>, ) {
>(column: Column<TFeatures, TData, TValue>, table: Table<TFeatures, TData>) {
return table.getState().columnSizingInfo.isResizingColumn === column.id
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,10 @@ export function table_getFilteredSelectedRowModel<
export function table_getGroupedSelectedRowModel<
TFeatures extends TableFeatures,
TData extends RowData,
>(
table: Table<TFeatures, TData>,
) {
>(table: Table<TFeatures, TData>) {
const { rowSelection } = table.getState()
const rowModel = table_getCoreRowModel(table)

if (!Object.keys(rowSelection).length) {
return {
rows: [],
Expand Down

0 comments on commit 2b3bb36

Please sign in to comment.