From da48f005a3c9d11f3df87855fa0916f5421c8f20 Mon Sep 17 00:00:00 2001
From: Imbus <imbus64@protonmail.com>
Date: Wed, 15 Nov 2023 16:07:04 +0100
Subject: [PATCH] Fix debug comment

---
 client-solid/src/Posts.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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>
   );
 }