diff --git a/docs/02-app/01-building-your-application/03-data-fetching/index.mdx b/docs/02-app/01-building-your-application/03-data-fetching/index.mdx index 3d2227e9ba69..cbfabbdfa952 100644 --- a/docs/02-app/01-building-your-application/03-data-fetching/index.mdx +++ b/docs/02-app/01-building-your-application/03-data-fetching/index.mdx @@ -76,7 +76,7 @@ If you need to fetch the same data (e.g. current user) in multiple components in > **Good to know**: > -> - `POST` requests are not automatically deduplicated. [Learn more about caching](/docs/app/building-your-application/data-fetching/caching). +> - `fetch` requests are automatically deduplicated [under the following conditions](/docs/app/building-your-application/data-fetching/caching). > - If you're unable to use `fetch`, React provides a [`cache` function](/docs/app/building-your-application/data-fetching/caching#react-cache) to allow you to manually cache data for the duration of the request. ## Static and Dynamic Data Fetching