diff --git a/src/components/posts/index.tsx b/src/components/posts/index.tsx index 043b53c..e740bf8 100644 --- a/src/components/posts/index.tsx +++ b/src/components/posts/index.tsx @@ -319,15 +319,11 @@ export default function Posts() { ) : (
- {stickyPosts && stickyPosts.length > 0 ? ( + {stickyPosts && + stickyPosts.length > 0 && stickyPosts.map((post) => ( - )) - ) : ( -

- No posts match your filters -

- )} + ))}
)}