Skip to content

Commit 3e3fba9

Browse files
fix(react-query): add missing subscribed option to UseInfiniteQueryOptions (#8546)
* fix(react-query): add missing subscribed option to UseInfiniteQueryOptions * ci: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent f04dd19 commit 3e3fba9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/react-query/src/types.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,13 @@ export interface UseInfiniteQueryOptions<
101101
TPageParam
102102
>,
103103
'suspense'
104-
> {}
104+
> {
105+
/**
106+
* Set this to `false` to unsubscribe this observer from updates to the query cache.
107+
* Defaults to `true`.
108+
*/
109+
subscribed?: boolean
110+
}
105111

106112
export type AnyUseSuspenseInfiniteQueryOptions =
107113
UseSuspenseInfiniteQueryOptions<any, any, any, any, any, any>

0 commit comments

Comments
 (0)