From 2049ed0b9226a1d76abeb221da16401a883f5052 Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Wed, 22 Jul 2026 21:44:43 +0100 Subject: [PATCH] Clarify pending state description in useTransition example --- src/content/reference/react/useTransition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/reference/react/useTransition.md b/src/content/reference/react/useTransition.md index 472224e58d9..85ed19cbfcd 100644 --- a/src/content/reference/react/useTransition.md +++ b/src/content/reference/react/useTransition.md @@ -320,7 +320,7 @@ These solutions handle request ordering for you. When using Transitions to build In this example, the `updateQuantity` function also simulates a request to the server to update the item's quantity in the cart. This function is *artificially slowed down* so that it takes at least a second to complete the request. -Update the quantity multiple times quickly. Notice that the pending "Total" state is shown while any requests is in progress, but the "Total" updates multiple times for each time the "quantity" was clicked: +Update the quantity multiple times quickly. Notice that the pending "Total" state is shown until the first request completes, but the "Total" updates multiple times for each time the "quantity" was clicked: