Skip to content

Commit 4fb781f

Browse files
authored
docs: Fix community resource links in important Defaults page. (#8697)
* Fix community resource links * Fix all the remaning community links
1 parent 67e52cf commit 4fb781f

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

‎docs/framework/react/guides/important-defaults.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Out of the box, TanStack Query is configured with **aggressive but sane** defaul
3636

3737
Have a look at the following articles from our Community Resources for further explanations of the defaults:
3838

39-
- [Practical React Query](../../community/tkdodos-blog#1-practical-react-query)
40-
- [React Query as a State Manager](../../community/tkdodos-blog#10-react-query-as-a-state-manager)
39+
- [Practical React Query](../community/tkdodos-blog#1-practical-react-query)
40+
- [React Query as a State Manager](../community/tkdodos-blog#10-react-query-as-a-state-manager)
4141

4242
[//]: # 'Materials'

‎docs/framework/react/guides/initial-query-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,6 @@ const result = useQuery({
170170

171171
## Further reading
172172

173-
For a comparison between `Initial Data` and `Placeholder Data`, have a look at the [Community Resources](../../community/tkdodos-blog#9-placeholder-and-initial-data-in-react-query).
173+
For a comparison between `Initial Data` and `Placeholder Data`, have a look at the [Community Resources](../community/tkdodos-blog#9-placeholder-and-initial-data-in-react-query).
174174

175175
[//]: # 'Materials'

‎docs/framework/react/guides/mutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ const mutation = useMutation({
408408

409409
## Further reading
410410

411-
For more information about mutations, have a look at [#12: Mastering Mutations in React Query](../../community/tkdodos-blog#12-mastering-mutations-in-react-query) from
411+
For more information about mutations, have a look at [#12: Mastering Mutations in React Query](../community/tkdodos-blog#12-mastering-mutations-in-react-query) from
412412
the Community Resources.
413413

414414
[//]: # 'Materials'

‎docs/framework/react/guides/placeholder-query-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ function Todo({ blogPostId }) {
9696

9797
## Further reading
9898

99-
For a comparison between `Placeholder Data` and `Initial Data`, have a look at the [Community Resources](../../community/tkdodos-blog#9-placeholder-and-initial-data-in-react-query).
99+
For a comparison between `Placeholder Data` and `Initial Data`, have a look at the [Community Resources](../community/tkdodos-blog#9-placeholder-and-initial-data-in-react-query).
100100

101101
[//]: # 'Materials'

‎docs/framework/react/guides/prefetching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ queryClient.setQueryData(['todos'], todos)
431431

432432
## Further reading
433433

434-
For a deep-dive on how to get data into your Query Cache before you fetch, have a look at [#17: Seeding the Query Cache](../../community/tkdodos-blog#17-seeding-the-query-cache) from the Community Resources.
434+
For a deep-dive on how to get data into your Query Cache before you fetch, have a look at [#17: Seeding the Query Cache](../community/tkdodos-blog#17-seeding-the-query-cache) from the Community Resources.
435435

436436
Integrating with Server Side routers and frameworks is very similar to what we just saw, with the addition that the data has to passed from the server to the client to be hydrated into the cache there. To learn how, continue on to the [Server Rendering & Hydration guide](../ssr).
437437

‎docs/framework/react/guides/queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ So keep in mind that a query can be in `pending` state without actually fetching
140140

141141
## Further Reading
142142

143-
For an alternative way of performing status checks, have a look at the [Community Resources](../../community/tkdodos-blog#4-status-checks-in-react-query).
143+
For an alternative way of performing status checks, have a look at the [Community Resources](../community/tkdodos-blog#4-status-checks-in-react-query).
144144

145145
[//]: # 'Materials'

‎docs/framework/react/guides/query-keys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ function Todos({ todoId }) {
9191

9292
[//]: # 'Example5'
9393

94-
Note that query keys act as dependencies for your query functions. Adding dependent variables to your query key will ensure that queries are cached independently, and that any time a variable changes, _queries will be refetched automatically_ (depending on your `staleTime` settings). See the [exhaustive-deps](../../../../eslint/exhaustive-deps) section for more information and examples.
94+
Note that query keys act as dependencies for your query functions. Adding dependent variables to your query key will ensure that queries are cached independently, and that any time a variable changes, _queries will be refetched automatically_ (depending on your `staleTime` settings). See the [exhaustive-deps](../../../eslint/exhaustive-deps) section for more information and examples.
9595

9696
[//]: # 'Materials'
9797

9898
## Further reading
9999

100-
For tips on organizing Query Keys in larger applications, have a look at [Effective React Query Keys](../../community/tkdodos-blog#8-effective-react-query-keys) and check the [Query Key Factory Package](../../community/community-projects#query-key-factory) from
100+
For tips on organizing Query Keys in larger applications, have a look at [Effective React Query Keys](../community/tkdodos-blog#8-effective-react-query-keys) and check the [Query Key Factory Package](../community/community-projects#query-key-factory) from
101101
the Community Resources.
102102

103103
[//]: # 'Materials'

‎docs/framework/react/guides/render-optimizations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ export const useTodoCount = () => {
7272

7373
## Further Reading
7474

75-
For an in-depth guide about these topics, read [React Query Render Optimizations](../../community/tkdodos-blog#3-react-query-render-optimizations) from
75+
For an in-depth guide about these topics, read [React Query Render Optimizations](../community/tkdodos-blog#3-react-query-render-optimizations) from
7676
the Community Resources.

‎docs/framework/react/guides/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,5 +179,5 @@ _Note_: when using React 18, the semantics of `waitFor` have changed as noted ab
179179

180180
## Further reading
181181

182-
For additional tips and an alternative setup using `mock-service-worker`, have a look at [Testing React Query](../../community/tkdodos-blog#5-testing-react-query) from
182+
For additional tips and an alternative setup using `mock-service-worker`, have a look at [Testing React Query](../community/tkdodos-blog#5-testing-react-query) from
183183
the Community Resources.

0 commit comments

Comments
 (0)