Fix debug comment

This commit is contained in:
Imbus 2023-11-15 16:07:04 +01:00
parent dea4ac1fb3
commit da48f005a3

View file

@ -15,9 +15,9 @@ export function Posts(): JSXElement {
return ( return (
<Show when={!loading()} fallback={loadSpinner()}> <Show when={!loading()} fallback={loadSpinner()}>
{/* <For each={posts()}> <For each={posts()}>
{(post): JSXElement => <PostSegment post={post} />} {(post): JSXElement => <PostSegment post={post} />}
</For> */} </For>
</Show> </Show>
); );
} }