From 6791e364018668df860bbb277ca8668cfd34851a Mon Sep 17 00:00:00 2001 From: Ategon Date: Wed, 22 Jan 2025 22:16:38 -0500 Subject: [PATCH] Fix empty sticky post buffer --- src/components/posts/index.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/components/posts/index.tsx b/src/components/posts/index.tsx index e740bf8..ea8e54e 100644 --- a/src/components/posts/index.tsx +++ b/src/components/posts/index.tsx @@ -318,13 +318,14 @@ export default function Posts() { /> ) : ( -
- {stickyPosts && - stickyPosts.length > 0 && - stickyPosts.map((post) => ( + stickyPosts && + stickyPosts.length > 0 && ( +
+ {stickyPosts.map((post) => ( ))} -
+
+ ) )}