Fix text when no stickied posts

This commit is contained in:
Ategon 2025-01-22 22:12:25 -05:00
parent 42c730e073
commit 63d7cd49d2

View file

@ -319,15 +319,11 @@ export default function Posts() {
</div> </div>
) : ( ) : (
<div className="flex flex-col gap-3 p-4"> <div className="flex flex-col gap-3 p-4">
{stickyPosts && stickyPosts.length > 0 ? ( {stickyPosts &&
stickyPosts.length > 0 &&
stickyPosts.map((post) => ( stickyPosts.map((post) => (
<StickyPostCard key={post.id} post={post} /> <StickyPostCard key={post.id} post={post} />
)) ))}
) : (
<p className="text-center text-[#333] dark:text-white transition-color duration-250 ease-linear">
No posts match your filters
</p>
)}
</div> </div>
)} )}