diff --git a/docs/react/guides/optimistic-updates.md b/docs/react/guides/optimistic-updates.md index c5c2633a7a..45eb734236 100644 --- a/docs/react/guides/optimistic-updates.md +++ b/docs/react/guides/optimistic-updates.md @@ -79,7 +79,7 @@ const variables = useMutationState({ ``` [//]: # 'ExampleUI4' -`variables` will be an `Array`, because there might be multiple mutations running at the same time. If we need a uniqe key for the items, we can also select `mutation.state.submittedAt`. This will even make displaying concurrent optimistic updates a breeze. +`variables` will be an `Array`, because there might be multiple mutations running at the same time. If we need a unique key for the items, we can also select `mutation.state.submittedAt`. This will even make displaying concurrent optimistic updates a breeze. ## Via the cache