Skip to content

Commit

Permalink
docs: fix a typo in the documentation examples (#1189)
Browse files Browse the repository at this point in the history
  • Loading branch information
pa4080 authored Jul 28, 2024
1 parent cf55cfb commit d6253a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ export const tableOptions: TableOption[] = [
linkText: 'Memoize Components Guide',
required: false,
source: 'MRT',
type: `'cell' | 'row' | 'table-body'`,
type: `'cells' | 'rows' | 'table-body'`,
},
{
tableOption: 'mergeOptions',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const table = useMaterialReactTable({
columns,
data,
//memoize all cells. This value can be applied dynamically based on a certain scenario/condition if needed
memoMode: 'cell', // 'cell' | 'row' | 'table-body'
memoMode: 'cells', // 'cells' | 'rows' | 'table-body'
});
```

Expand Down

0 comments on commit d6253a6

Please sign in to comment.