Skip to content

Commit 226c677

Browse files
authored
docs: fix misplaced comment (#5824)
1 parent 3cf4fd9 commit 226c677

File tree

1 file changed

+2
-2
lines changed
  • examples/react/filters-fuzzy/src

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ function App() {
8484
{
8585
accessorKey: 'firstName',
8686
cell: info => info.getValue(),
87-
filterFn: 'includesStringSensitive', //note: normal non-fuzzy filter column
87+
filterFn: 'includesStringSensitive', //note: normal non-fuzzy filter column - case sensitive
8888
},
8989
{
90-
accessorFn: row => row.lastName, //note: normal non-fuzzy filter column - case sensitive
90+
accessorFn: row => row.lastName,
9191
id: 'lastName',
9292
cell: info => info.getValue(),
9393
header: () => <span>Last Name</span>,

0 commit comments

Comments
 (0)