Skip to content

Commit c6716ea

Browse files
authored
docs: Update useQueries hook example (#3710)
I have used as an example "staleTime: Infinity", but it can be whatever makes sense here. I've had a hard time figuring out where to put my options just by reading the explanation below the code example.
1 parent 74d895c commit c6716ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/useQueries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The `useQueries` hook can be used to fetch a variable number of queries:
88
```js
99
const results = useQueries({
1010
queries: [
11-
{ queryKey: ['post', 1], queryFn: fetchPost },
12-
{ queryKey: ['post', 2], queryFn: fetchPost }
11+
{ queryKey: ['post', 1], queryFn: fetchPost, staleTime: Infinity},
12+
{ queryKey: ['post', 2], queryFn: fetchPost, staleTime: Infinity}
1313
]
1414
})
1515
```

0 commit comments

Comments
 (0)