From 4374277bfa75bb0b14fa9d31481a31c37cefd63c Mon Sep 17 00:00:00 2001 From: pooya parsa Date: Wed, 27 Oct 2021 13:43:05 +0200 Subject: [PATCH] docs: remove reference to non existing page --- docs/content/3.docs/1.usage/1.data-fetching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/3.docs/1.usage/1.data-fetching.md b/docs/content/3.docs/1.usage/1.data-fetching.md index e18c5664fb..fb09f99682 100644 --- a/docs/content/3.docs/1.usage/1.data-fetching.md +++ b/docs/content/3.docs/1.usage/1.data-fetching.md @@ -80,7 +80,7 @@ const { data } = await useFetch('/api/count') ### Best practices -As seen in [Concepts > Data fetching](/concepts/data-fetching), the data returned by `useAsyncData` will be stored inside the page payload. This mean that every key returned that is not used in your component will be added to the payload. +The data returned by `useAsyncData` will be stored inside the page payload. This mean that every key returned that is not used in your component will be added to the payload. **We strongly recommend to only select the keys that you will use in your component.**