Skip to content

Commit 7574db7

Browse files
committed
Clarify conditional example transition
1 parent fa4a59c commit 7574db7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/content/reference/react-dom/browser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ function ProductDetails({ productId, initialData }) {
258258
259259
On the server, `useBrowserQuery` calls `useQuery` only when `initialData` is available. Otherwise, the closest Suspense boundary's fallback remains in the HTML. In the browser, `use(browser())` returns `undefined`, so the query library can fetch the data or read it from its client cache.
260260
261-
You can also call `use(browser())` only when initial data isn't available. In this example, the event time zone is provided as initial data, but the user's time zone is read from the browser. Click **Reload** to see the loading fallback for the user's time zone.
261+
The following example uses this pattern with time zones. The event time zone is provided as initial data, while the user's time zone is read from the browser. Click **Reload** to see the loading fallback for the user's time zone.
262262
263263
<Sandpack>
264264

0 commit comments

Comments
 (0)