Fix: Handle undefined content in blog post rendering

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-19 23:48:44 +01:00
co-authored by Claude Opus 4.5
parent a7ee78d194
commit f98476c3fd
+1 -1
View File
@@ -1382,7 +1382,7 @@ export default async function BlogPostPage({ params }: Props) {
</div>
{/* Content */}
{renderMarkdown(post.content)}
{renderMarkdown(post.content || '')}
</article>
</main>
);