From 6d0a8f0e010e5e55d058a1189a4d0982ebe6f9e9 Mon Sep 17 00:00:00 2001 From: Jamey Huffnagle Date: Thu, 8 Feb 2024 14:05:32 -0500 Subject: [PATCH] update docstring --- react-api-client/src/runs/useAllRunsQuery.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/react-api-client/src/runs/useAllRunsQuery.ts b/react-api-client/src/runs/useAllRunsQuery.ts index 96a2a1ae456..b02c032928a 100644 --- a/react-api-client/src/runs/useAllRunsQuery.ts +++ b/react-api-client/src/runs/useAllRunsQuery.ts @@ -13,6 +13,10 @@ export type UseAllRunsQueryOptions = UseQueryOptions< Array > +/** + * @property {HostConfig | null | undefined} hostOverride: + * When using all runs query outside of the host context provider, we must specify the host manually. + */ export function useAllRunsQuery( params: GetRunsParams = {}, options: UseAllRunsQueryOptions = {},