mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Fix text when no stickied posts
This commit is contained in:
parent
42c730e073
commit
63d7cd49d2
1 changed files with 3 additions and 7 deletions
|
@ -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>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue