From ff8a0400557c86aa36d4f7c4ac3fafe13c94e588 Mon Sep 17 00:00:00 2001 From: Arash <38922203+arashsheyda@users.noreply.github.com> Date: Fri, 22 Sep 2023 10:17:25 +0300 Subject: [PATCH] docs: update link to `devtools.nuxt.com` (#23350) --- docs/1.getting-started/6.data-fetching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.getting-started/6.data-fetching.md b/docs/1.getting-started/6.data-fetching.md index 9611257a28..27995d5107 100644 --- a/docs/1.getting-started/6.data-fetching.md +++ b/docs/1.getting-started/6.data-fetching.md @@ -26,7 +26,7 @@ When using a framework like Nuxt that can perform calls and render pages on both The [`useFetch`](/docs/api/composables/use-fetch) and [`useAsyncData`](/docs/api/composables/use-async-data) composables ensure that once an API call is made on the server, the data is properly forwarded to the client in the payload. This JavaScript object is accessible through [`useNuxtApp().payload`](/docs/api/composables/use-nuxt-app#payload) and is used on the client to avoid refetching the same data when the code is executed in the browser. ::alert{icon=⚙️} -Use the [Nuxt DevTools](https://devtools.nuxtjs.org) to inspect this data in the payload tab. +Use the [Nuxt DevTools](https://devtools.nuxt.com) to inspect this data in the payload tab. :: ### Suspense