We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b665210 commit ae68909Copy full SHA for ae68909
docs/01-app/03-api-reference/01-directives/use-cache-private.mdx
@@ -120,7 +120,9 @@ export default async function ProductPage({ params }) {
120
return (
121
<div>
122
<ProductDetails id={id} />
123
- <Recommendations productId={id} />
+ <Suspense fallback={<div>Loading recommendations...</div>}>
124
+ <Recommendations productId={id} />
125
+ </Suspense>
126
</div>
127
)
128
}
0 commit comments