Skip to content

Commit 45371c9

Browse files
committed
2 parents b50d89c + 6f042e0 commit 45371c9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/src/components/markdown.module.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,15 @@
6464
.markdown > p > a,
6565
.markdown > ul > li > a,
6666
.markdown > ol > li > a,
67+
.markdown > blockquote > p > a,
6768
.markdown > table > tbody > tr > td > a {
6869
@apply text-blue-600 font-semibold transition-colors duration-150 ease-out;
6970
}
7071

7172
.markdown > p > a:hover,
7273
.markdown > ul > li > a:hover,
7374
.markdown > ol > li > a:hover,
75+
.markdown > blockquote > p > a:hover,
7476
.markdown > table > tbody > tr > td > a:hover {
7577
@apply text-blue-800 transition-colors duration-150 ease-out;
7678
}

docs/src/pages/docs/guides/important-defaults.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ Out of the box, React Query is configured with **aggressive but sane** defaults.
2020

2121
> To change this, you can alter the default `retry` and `retryDelay` options for queries to something other than `3` and the default exponential backoff function.
2222
23-
- Query results by default are **structurally shared to detect if data has actually changed** and if not, **the data reference remains unchanged** to better help with value stabilization with regards to useMemo and useCallback. If this concept sounds foreign, then don't worry about it! 99.9% of the time you will not need to disable this and it make your app more performant at zero cost to you.
23+
- Query results by default are **structurally shared to detect if data has actually changed** and if not, **the data reference remains unchanged** to better help with value stabilization with regards to useMemo and useCallback. If this concept sounds foreign, then don't worry about it! 99.9% of the time you will not need to disable this and it makes your app more performant at zero cost to you.
2424

2525
> Structural sharing only works with JSON-compatible values, any other value types will always be considered as changed. If you are seeing performance issues because of large responses for example, you can disable this feature with the `config.structuralSharing` flag. If you are dealing with non-JSON compatible values in your query responses and still want to detect if data has changed or not, you can define a data compare function with `config.isDataEqual`.

docs/src/pages/docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ yarn add react-query
2121

2222
React Query is compatible with React v16.8+ and works with ReactDOM and React Native.
2323

24-
> Wanna give it a spin before you download? Try out the [simple]() or [basic]() examples!
24+
> Wanna give it a spin before you download? Try out the [simple](/docs/examples/simple) or [basic](/docs/examples/basic) examples!
2525
2626
### CDN
2727

0 commit comments

Comments
 (0)