From b3183899f67933a17aeb9fd2f44631235fe373f4 Mon Sep 17 00:00:00 2001 From: EliasHdzR Date: Thu, 26 Mar 2026 14:27:55 -0600 Subject: [PATCH] Docs: fix typo in column filtering documentation --- docs/guide/column-filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/column-filtering.md b/docs/guide/column-filtering.md index 0d9d7e2087..b2d4fcd603 100644 --- a/docs/guide/column-filtering.md +++ b/docs/guide/column-filtering.md @@ -57,7 +57,7 @@ const table = useReactTable({ }) ``` -> **Note:** When using manual filtering, many of the options that are discussed in the rest of this guide will have no effect. When is `manualFiltering` is set to `true`, the table instance will not apply any filtering logic to the rows that are passed to it. Instead, it will assume that the rows are already filtered and will use the `data` that you pass to it as-is. +> **Note:** When using manual filtering, many of the options that are discussed in the rest of this guide will have no effect. When `manualFiltering` is set to `true`, the table instance will not apply any filtering logic to the rows that are passed to it. Instead, it will assume that the rows are already filtered and will use the `data` that you pass to it as-is. ### Client-Side Filtering