Skip to content

Commit 24c8055

Browse files
authoredMar 31, 2025··
docs(react-reference): fixed cancellation typo (#8883)
1 parent f174386 commit 24c8055

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

Diff for: ‎docs/framework/react/reference/useSuspenseInfiniteQuery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Same object as [useInfiniteQuery](../reference/useInfiniteQuery.md), except that
2727

2828
**Caveat**
2929

30-
[Cancelation](../guides/query-cancellation.md) does not work.
30+
[Cancellation](../guides/query-cancellation.md) does not work.

Diff for: ‎docs/framework/react/reference/useSuspenseQueries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ Same structure as [useQueries](../reference/useQueries.md), except that for each
2929

3030
Keep in mind that the component will only re-mount after **all queries** have finished loading. Hence, if a query has gone stale in the time it took for all the queries to complete, it will be fetched again at re-mount. To avoid this, make sure to set a high enough `staleTime`.
3131

32-
[Cancelation](../guides/query-cancellation.md) does not work.
32+
[Cancellation](../guides/query-cancellation.md) does not work.

Diff for: ‎docs/framework/react/reference/useSuspenseQuery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Same object as [useQuery](../reference/useQuery.md), except that:
2626

2727
**Caveat**
2828

29-
[Cancelation](../guides/query-cancellation.md) does not work.
29+
[Cancellation](../guides/query-cancellation.md) does not work.

0 commit comments

Comments
 (0)
Please sign in to comment.