From 6547423862ee2f20c9bdbb8546927e552763d9b3 Mon Sep 17 00:00:00 2001 From: Dominik Dorfmeister Date: Mon, 27 May 2024 18:27:30 +0200 Subject: [PATCH] update note --- docs/framework/react/guides/advanced-ssr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/framework/react/guides/advanced-ssr.md b/docs/framework/react/guides/advanced-ssr.md index 6b313e0a31..33267b084a 100644 --- a/docs/framework/react/guides/advanced-ssr.md +++ b/docs/framework/react/guides/advanced-ssr.md @@ -425,7 +425,7 @@ export default function Posts() { } ``` -> Note that you could also `useQuery` instead of `useSuspenseQuery`, and the Promise would still be picked up correctly. However, NextJs won't suspend in that case and the component will render in the `pending` status. +> Note that you could also `useQuery` instead of `useSuspenseQuery`, and the Promise would still be picked up correctly. However, NextJs won't suspend in that case and the component will render in the `pending` status, which also opts out of server rendering the content. For more information, check out the [Next.js App with Prefetching Example](../../examples/nextjs-app-prefetching).