docs: update startTransition async guidance for React 19#8496
Draft
LuxologyGG wants to merge 1 commit into
Draft
docs: update startTransition async guidance for React 19#8496LuxologyGG wants to merge 1 commit into
LuxologyGG wants to merge 1 commit into
Conversation
Clarify that useTransition supports async Actions in React 19, including state updates after await. Reserve the post-await wrapping requirement for standalone startTransition. Rephrase troubleshooting to avoid implying async callbacks are disallowed. Fixes reactjs#7172
Size changesDetails📦 Next.js Bundle Analysis for react-devThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #7172
The
startTransitiondocs still described async Actions as a limitation that required wrapping state updates afterawaitin anotherstartTransitioncall. In React 19,useTransitionsupports async Actions, and updates afterawaitare included in the Transition automatically.This PR updates the
startTransitionanduseTransitionreference pages to document async Action support, clarifies that the post-awaitwrapping requirement only applies to the standalonestartTransitionfunction, and updates a relateduseActionStatecaveat that pointed to the old guidance.Before / After
Before: Both standalone
startTransitionanduseTransitionwere documented as requiring a secondstartTransitioncall afterawait.After:
useTransition'sstartTransitionin React 19 includes post-awaitupdates automatically; standalonestartTransitionstill requires explicit wrapping afterawait.Test plan
/reference/react/startTransitionand/reference/react/useTransition