Explore Library
Quiz

Suspense with useTransition on Refetch

Understand how startTransition prevents Suspense fallbacks from replacing already-visible content during data updates.

You have a Suspense-enabled data component already showing content. The user changes a filter, triggering a new data read that suspends. You wrap the state update that changes the filter inside startTransition from useTransition. What is the observable effect compared to updating the state without a transition?