mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Fix empty sticky post buffer
This commit is contained in:
parent
63d7cd49d2
commit
6791e36401
1 changed files with 6 additions and 5 deletions
|
@ -318,13 +318,14 @@ export default function Posts() {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex flex-col gap-3 p-4">
|
stickyPosts &&
|
||||||
{stickyPosts &&
|
stickyPosts.length > 0 && (
|
||||||
stickyPosts.length > 0 &&
|
<div className="flex flex-col gap-3 p-4">
|
||||||
stickyPosts.map((post) => (
|
{stickyPosts.map((post) => (
|
||||||
<StickyPostCard key={post.id} post={post} />
|
<StickyPostCard key={post.id} post={post} />
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
)
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="flex justify-between p-4 pb-0">
|
<div className="flex justify-between p-4 pb-0">
|
||||||
|
|
Loading…
Reference in a new issue