diff --git a/client-solid/src/Posts.tsx b/client-solid/src/Posts.tsx index db1efad..72b22aa 100644 --- a/client-solid/src/Posts.tsx +++ b/client-solid/src/Posts.tsx @@ -15,9 +15,9 @@ export function Posts(): JSXElement { return ( <Show when={!loading()} fallback={loadSpinner()}> - {/* <For each={posts()}> + <For each={posts()}> {(post): JSXElement => <PostSegment post={post} />} - </For> */} + </For> </Show> ); }