From 15ba0fcb6667a4e1a4ae5b4faf51ccc5d4d56a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ian=20Langworth=20=E2=98=A0?= Date: Wed, 18 Oct 2023 12:11:01 -0700 Subject: [PATCH] Typo in optimistic-updates.md --- docs/react/guides/optimistic-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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