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 Nov 28, 2024
1 parent f3c37dd commit 85a3e7b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/angular-table/src/constructTableHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export type TableHelper_Core<
tableCreator: <TData extends RowData>(
tableOptions: () => Omit<
TableOptions<TFeatures, TData>,
'_features' | '_rowModels'
'_features' | '_rowModels'
>,
) => Table<TFeatures, TData>
}
Expand Down
2 changes: 1 addition & 1 deletion packages/angular-table/src/createTableHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export type TableHelper<
injectTable: <TInferData extends TData>(
tableOptions: () => Omit<
TableOptions<TFeatures, TInferData>,
'_features' | '_rowModels'
'_features' | '_rowModels'
>,
) => Table<TFeatures, TInferData>
}
Expand Down
2 changes: 1 addition & 1 deletion packages/react-table/src/createTableHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type TableHelper<
useTable: <TData extends RowData>(
tableOptions: Omit<
TableOptions<TFeatures, TData>,
'_features' | '_rowModels'
'_features' | '_rowModels'
>,
) => Table<TFeatures, TData>
}
Expand Down
2 changes: 1 addition & 1 deletion packages/solid-table/src/createTableHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type TableHelper<
createTable: (
tableOptions: Omit<
TableOptions<TFeatures, TData>,
'_features' | '_rowModels'
'_features' | '_rowModels'
>,
) => Table<TFeatures, TData>
}
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte-table/src/createTableHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type TableHelper<
createTable: (
tableOptions: Omit<
TableOptions<TFeatures, TData>,
'_features' | '_rowModels'
'_features' | '_rowModels'
>,
) => Table<TFeatures, TData>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ function _createSortedRowModel<

// Filter out sortings that correspond to non existing columns
const availableSorting = sorting.filter((sort) =>
column_getCanSort(table.getColumn(sort.id) as Column_Internal<TFeatures, TData>),
column_getCanSort(
table.getColumn(sort.id) as Column_Internal<TFeatures, TData>,
),
)

const columnInfoById: Record<
Expand Down

0 comments on commit 85a3e7b

Please sign in to comment.