Skip to content

Commit 32ea9f1

Browse files
ci: apply automated fixes
1 parent 6885965 commit 32ea9f1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/blog/react-server-components.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,10 @@ const getPost = createServerFn().handler(async ({ data }) => {
272272

273273
{/* Slot: server requests client UI here */}
274274
<footer>
275-
{props.renderPostActions?.({ postId: post.id, authorId: post.authorId })}
275+
{props.renderPostActions?.({
276+
postId: post.id,
277+
authorId: post.authorId,
278+
})}
276279
</footer>
277280

278281
{/* Slot: client fills this with children */}

0 commit comments

Comments
 (0)