Skip to content

Commit 7c39c44

Browse files
authored
feat: improved suspense code example in docs (#9250)
1 parent 71099a5 commit 7c39c44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/start/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ function Issue() {
409409
{/* Await manages the deferred data (promise) */}
410410
<Await resolve={history}>
411411
{/* this calls back when the data is resolved */}
412-
{(history) => <IssueHistory history={history} />}
412+
{(resolvedHistory) => <IssueHistory history={resolvedHistory} />}
413413
</Await>
414414
</Suspense>
415415

0 commit comments

Comments
 (0)