Skip to content

Commit c0e6122

Browse files
authoredJun 28, 2024
docs: Remove duplicate words (#5629)
1 parent c09d214 commit c0e6122

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎docs/framework/react/guide/table-state.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ table.setOptions(prev => ({
131131

132132
### On State Change Callbacks
133133

134-
So far, we have seen the `on[State]Change` and `onStateChange` table options work to "hoist" the table state changes into our own state management. However, there are a few things about these using these options that you should be aware of.
134+
So far, we have seen the `on[State]Change` and `onStateChange` table options work to "hoist" the table state changes into our own state management. However, there are a few things about using these options that you should be aware of.
135135

136136
#### 1. **State Change Callbacks MUST have their corresponding state value in the `state` option**.
137137

@@ -201,4 +201,4 @@ const [sorting, setSorting] = React.useState<SortingState[]>([
201201
desc: true,
202202
}
203203
])
204-
```
204+
```

‎docs/guide/column-filtering.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Filtering comes in 2 flavors: Column Filtering and Global Filtering.
2525

2626
This guide will focus on column filtering, which is a filter that is applied to a single column's accessor value.
2727

28-
TanStack table supports both both client-side and manual server-side filtering. This guide will go over how to implement and customize both, and help you decide which one is best for your use-case.
28+
TanStack table supports both client-side and manual server-side filtering. This guide will go over how to implement and customize both, and help you decide which one is best for your use-case.
2929

3030
### Client-Side vs Server-Side Filtering
3131

0 commit comments

Comments
 (0)