Skip to content

Commit 0981378

Browse files
committed
Merge remote-tracking branch 'react-query/master' into alpha
2 parents 00d0c52 + 9b5d18c commit 0981378

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docs/src/pages/guides/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ await waitFor(() => {
128128
expect(result.current.data).toEqual({answer: 42});
129129
```
130130

131-
Here we are making use of `waitFor` and waiting until our the query status indicates that the request has succeeded. This way we know that our hook has finished and should have the correct data.
131+
Here we are making use of `waitFor` and waiting until the query status indicates that the request has succeeded. This way we know that our hook has finished and should have the correct data.
132132

133133
## Testing Load More / Infinite Scroll
134134

docs/src/pages/reference/useQuery.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const {
4141
onError,
4242
onSettled,
4343
onSuccess,
44+
placeholderData,
4445
queryKeyHashFn,
4546
refetchInterval,
4647
refetchIntervalInBackground,

src/devtools/styledComponents.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export const QueryKey = styled('span', {
6666
export const Code = styled('code', {
6767
fontSize: '.9em',
6868
color: 'inherit',
69+
background: 'inherit',
6970
})
7071

7172
export const Input = styled('input', (_props, theme) => ({

0 commit comments

Comments
 (0)