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 76bfacf commit efed3ffCopy full SHA for efed3ff
examples/react/transition/src/index.tsx
@@ -27,7 +27,7 @@ const Example2 = ({ value }: { value: number }) => {
27
const { promise, isFetching } = useQuery({
28
queryKey: ['2' + value],
29
queryFn: async () => {
30
- await new Promise((resolve) => setTimeout(resolve, 2000))
+ await new Promise((resolve) => setTimeout(resolve, 1000))
31
return '2' + value
32
},
33
// placeholderData: keepPreviousData,
0 commit comments