Skip to content

Commit d3cf479

Browse files
authored
docs(react-guides): fixed link typo (#8923)
1 parent 202fe49 commit d3cf479

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/framework/react/guides/request-waterfalls.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ But that's just looking at the code from the example, if we consider what the fi
307307
5. |> getGraphDataById()
308308
```
309309

310-
Note that this looks a bit different when server rendering, we will explore that further in the [Server Rendering & Hydration guide](../ssr). Also note that it's not uncommon for the route that contains `<Feed>` to also be code split, which could add yet another hop.
310+
Note that this looks a bit different when server rendering, we will explore that further in the [Server Rendering & Hydration guide](./ssr.md). Also note that it's not uncommon for the route that contains `<Feed>` to also be code split, which could add yet another hop.
311311

312312
In the code split case, it might actually help to hoist the `getGraphDataById` query to the `<Feed>` component and make it conditional, or add a conditional prefetch. That query could then be fetched in parallel with the code, turning the example part into this:
313313

@@ -317,14 +317,14 @@ In the code split case, it might actually help to hoist the `getGraphDataById` q
317317
2. |> JS for <GraphFeedItem>
318318
```
319319

320-
This is very much a tradeoff however. You are now including the data fetching code for `getGraphDataById` in the same bundle as `<Feed>`, so evaluate what is best for your case. Read more about how to do this in the [Prefetching & Router Integration guide](../prefetching).
320+
This is very much a tradeoff however. You are now including the data fetching code for `getGraphDataById` in the same bundle as `<Feed>`, so evaluate what is best for your case. Read more about how to do this in the [Prefetching & Router Integration guide](./prefetching.md).
321321

322322
> The tradeoff between:
323323
>
324324
> - Include all data fetching code in the main bundle, even if we seldom use it
325325
> - Put the data fetching code in the code split bundle, but with a request waterfall
326326
>
327-
> is not great and has been one of the motivations for Server Components. With Server Components, it's possible to avoid both, read more about how this applies to React Query in the [Advanced Server Rendering guide](../advanced-ssr).
327+
> is not great and has been one of the motivations for Server Components. With Server Components, it's possible to avoid both, read more about how this applies to React Query in the [Advanced Server Rendering guide](./advanced-ssr.md).
328328
329329
## Summary and takeaways
330330

0 commit comments

Comments
 (0)