From 08c5a5d13c3e61964553934cdd053cc0046e6f52 Mon Sep 17 00:00:00 2001 From: Abraham Fong <32564701+abisfong@users.noreply.github.com> Date: Thu, 3 Apr 2025 14:53:10 -0700 Subject: [PATCH] Fix typo in table-state.md --- docs/framework/react/guide/table-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/framework/react/guide/table-state.md b/docs/framework/react/guide/table-state.md index 09d57566a0..af559cf6b8 100644 --- a/docs/framework/react/guide/table-state.md +++ b/docs/framework/react/guide/table-state.md @@ -53,7 +53,7 @@ const table = useReactTable({ }) ``` -> **Note**: Only specify each particular state in either `initialState` or `state`, but not both. If you pass in a particular state value to both `initialState` and `state`, the initialized state in `state` will take overwrite any corresponding value in `initialState`. +> **Note**: Only specify each particular state in either `initialState` or `state`, but not both. If you pass in a particular state value to both `initialState` and `state`, the initialized state in `state` will overwrite any corresponding value in `initialState`. ### Controlled State