We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 411f030 commit 40b296bCopy full SHA for 40b296b
docs/framework/react/guides/paginated-queries.md
@@ -10,7 +10,7 @@ Rendering paginated data is a very common UI pattern and in TanStack Query, it "
10
```tsx
11
const result = useQuery({
12
queryKey: ['projects', page],
13
- queryFn: fetchProjects,
+ queryFn: () => fetchProjects(page),
14
})
15
```
16
0 commit comments