Skip to content

Commit

Permalink
docs: fix dead link and typo in guide (#3136)
Browse files Browse the repository at this point in the history
Typo introduced in #2963.
  • Loading branch information
serhalp authored Jan 9, 2025
1 parent c99a4be commit 9f028a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/framework/react/guide/deferred-data-loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Deferred data loading is a pattern that allows the router to render the next loc

If you are using a library like [TanStack Query](https://react-query.tanstack.com) or any other data fetching library, then deferred data loading works a bit differently. Skip ahead to the [Deferred Data Loading with External Libraries](#deferred-data-loading-with-external-libraries) section for more information.

## Deferred Data Loading with and `Await`
## Deferred Data Loading with `Await`

To defer slow or non-critical data, return an **unawaited/unresolved** promise anywhere in your loader response:

Expand Down Expand Up @@ -137,7 +137,7 @@ Streamed promises follow the same lifecycle as the loader data they are associat

**Streaming requires a server that supports it and for TanStack Router to be configured to use it properly.**

Please read the entire [SSR Guide](/docs/guide/server-streaming) for step by step instructions on how to set up your server for streaming.
Please read the entire [Streaming SSR Guide](/docs/framework/react/guide/ssr#streaming-ssr) for step by step instructions on how to set up your server for streaming.

## SSR Streaming Lifecycle

Expand Down

0 comments on commit 9f028a5

Please sign in to comment.