Skip to content

Commit

Permalink
docs: remove references to @tanstack/loaders (#1357)
Browse files Browse the repository at this point in the history
* docs: remove tanstack loaders in the navigation doc

* docs: remove tanstack loaders in the external-data-loading doc
  • Loading branch information
SeanCassiere authored Mar 23, 2024
1 parent c50fb3d commit 876b887
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docs/framework/react/guide/external-data-loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Router is designed to be a perfect **coordinator** for external data fetching an

Any data fetching library that supports asynchronous promises can be used with TanStack Router. This includes:

- [TanStack Loaders](#tanstack-loaders)
- [TanStack Query](https://tanstack.com/query/latest/docs/react/overview)
- [SWR](https://swr.vercel.app/)
- [RTK Query](https://redux-toolkit.js.org/rtk-query/overview)
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/react/guide/navigation.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ const link = (

With preloading enabled and relatively quick asynchronous route dependencies (if any), this simple trick can increase the perceived performance of your application with very little effort.

What's even better is that by using a cache-first library like `@tanstack/loaders` or `@tanstack/query`, preloaded routes will stick around and be ready for a stale-while-revalidate experience if the user decides to navigate to the route later on.
What's even better is that by using a cache-first library like `@tanstack/query`, preloaded routes will stick around and be ready for a stale-while-revalidate experience if the user decides to navigate to the route later on.

### Link Preloading Timeout

Expand Down

0 comments on commit 876b887

Please sign in to comment.