We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f4e9ee commit fd484f2Copy full SHA for fd484f2
2 files changed
examples/react/filters-faceted/src/main.tsx
@@ -54,9 +54,7 @@ function App() {
54
[],
55
)
56
57
- const columns = React.useMemo<
58
- Array<ColumnDef<typeof _features, Person>>
59
- >(
+ const columns = React.useMemo<Array<ColumnDef<typeof _features, Person>>>(
60
() => [
61
{
62
accessorKey: 'firstName',
packages/table-core/src/helpers/tableHelper.ts
@@ -52,7 +52,7 @@ export function _createTableHelper<
52
features: tableHelperOptions._features as TFeatures,
53
options: tableHelperOptions,
tableCreator: (tableOptions) =>
- tableCreator({ ...tableHelperOptions, ...(tableOptions) }),
+ tableCreator({ ...tableHelperOptions, ...tableOptions }),
}
0 commit comments