From 98b069e769d5a7eab06b8b4f57a17cc4cb277146 Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Wed, 19 Jul 2023 20:23:06 -0400 Subject: [PATCH 1/2] fix potential typo --- docs/react/guides/queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/react/guides/queries.md b/docs/react/guides/queries.md index 73d8a465ae3..d4339558224 100644 --- a/docs/react/guides/queries.md +++ b/docs/react/guides/queries.md @@ -117,7 +117,7 @@ TypeScript will also narrow the type of `data` correctly if you've checked for ` ### FetchStatus -In addition to the `status` field, the `result` object, you will also get an additional `fetchStatus`property with the following options: +In addition to the `status` field, from the `result` object, you will also get an additional `fetchStatus`property with the following options: - `fetchStatus === 'fetching'` - The query is currently fetching. - `fetchStatus === 'paused'` - The query wanted to fetch, but it is paused. Read more about this in the [Network Mode](../guides/network-mode) guide. From a3e45b4f07ad9b6d44ac4ecb0d930d54fb3018c6 Mon Sep 17 00:00:00 2001 From: Dominik Dorfmeister Date: Thu, 20 Jul 2023 08:53:13 +0200 Subject: [PATCH 2/2] Update docs/react/guides/queries.md --- docs/react/guides/queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/react/guides/queries.md b/docs/react/guides/queries.md index d4339558224..25675ba2cd8 100644 --- a/docs/react/guides/queries.md +++ b/docs/react/guides/queries.md @@ -117,7 +117,7 @@ TypeScript will also narrow the type of `data` correctly if you've checked for ` ### FetchStatus -In addition to the `status` field, from the `result` object, you will also get an additional `fetchStatus`property with the following options: +In addition to the `status` field, you will also get an additional `fetchStatus` property with the following options: - `fetchStatus === 'fetching'` - The query is currently fetching. - `fetchStatus === 'paused'` - The query wanted to fetch, but it is paused. Read more about this in the [Network Mode](../guides/network-mode) guide.