Merge branch 'main' into feat/upgrade-tailwind-shadcn
This commit is contained in:
commit
27f6d9650a
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ const authorPosts = allPosts
|
|||
{
|
||||
authorPosts.length > 0 ? (
|
||||
<ul class="flex flex-col gap-4">
|
||||
{authorPosts.map((post) => (
|
||||
{authorPosts.filter(post => !post.data.draft).map((post) => (
|
||||
<li>
|
||||
<BlogCard entry={post} />
|
||||
</li>
|
||||
|
|
Loading…
Add table
Reference in a new issue