Skip to content

Commit fd484f2

Browse files
ci: apply automated fixes
1 parent 0f4e9ee commit fd484f2

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

examples/react/filters-faceted/src/main.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ function App() {
5454
[],
5555
)
5656

57-
const columns = React.useMemo<
58-
Array<ColumnDef<typeof _features, Person>>
59-
>(
57+
const columns = React.useMemo<Array<ColumnDef<typeof _features, Person>>>(
6058
() => [
6159
{
6260
accessorKey: 'firstName',

packages/table-core/src/helpers/tableHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export function _createTableHelper<
5252
features: tableHelperOptions._features as TFeatures,
5353
options: tableHelperOptions,
5454
tableCreator: (tableOptions) =>
55-
tableCreator({ ...tableHelperOptions, ...(tableOptions) }),
55+
tableCreator({ ...tableHelperOptions, ...tableOptions }),
5656
}
5757
}
5858

0 commit comments

Comments
 (0)