From 09163dee503bbe48e0af481323a7b37b8da5f562 Mon Sep 17 00:00:00 2001 From: Tarun Vellishetty Date: Mon, 2 Aug 2021 20:58:29 +0530 Subject: [PATCH] Fix typo in documentation of useLazyQuery function signature (#8527) --- docs/source/api/react/hooks.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/api/react/hooks.mdx b/docs/source/api/react/hooks.mdx index 6e81a435eab..db6047b443b 100644 --- a/docs/source/api/react/hooks.mdx +++ b/docs/source/api/react/hooks.mdx @@ -150,7 +150,7 @@ function useLazyQuery( options?: LazyQueryHookOptions, ): [ (options?: QueryLazyOptions) => void, - QueryResult + LazyQueryResult ] {} ```