Skip to content

Commit 9ee6e50

Browse files
committed
Merge remote-tracking branch 'origin/ref-updates' into ref-updates
2 parents 666143c + 431f2f2 commit 9ee6e50

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/routes/reference/components/suspense-list.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,13 @@ function ProfileDetails() {
9292

9393
function ProfileTimeline() {
9494
const [posts] = createResource(() => delayed(["First post"], 1000));
95-
return <ul>{posts()?.map((post) => <li>{post}</li>)}</ul>;
95+
return (
96+
<ul>
97+
{posts()?.map((post) => (
98+
<li>{post}</li>
99+
))}
100+
</ul>
101+
);
96102
}
97103

98104
<SuspenseList revealOrder="forwards" tail="collapsed">

0 commit comments

Comments
 (0)