Merge branch 'main' into feat/upgrade-tailwind-shadcn

This commit is contained in:
enscribe 2025-03-22 02:28:23 -07:00 committed by GitHub
commit 27f6d9650a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,7 +48,7 @@ const authorPosts = allPosts
{ {
authorPosts.length > 0 ? ( authorPosts.length > 0 ? (
<ul class="flex flex-col gap-4"> <ul class="flex flex-col gap-4">
{authorPosts.map((post) => ( {authorPosts.filter(post => !post.data.draft).map((post) => (
<li> <li>
<BlogCard entry={post} /> <BlogCard entry={post} />
</li> </li>