Skip to content

Commit 29d31a0

Browse files
committed
missing await
1 parent ba8bd16 commit 29d31a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/blog/2025/10/01/react-19-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ const resumeStream = await resume(<App />, postponed);
209209
Or you can call `resumeAndPrerender` to resume to get static HTML for SSG:
210210
211211
```
212-
const postponedState = getPostponedState(request);
212+
const postponedState = await getPostponedState(request);
213213
const { prelude } = await resumeAndPrerender(<App />, postponedState);
214214

215215
// Send complete HTML prelude to CDN.

0 commit comments

Comments
 (0)