Fix: Handle undefined content in blog post rendering
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1382,7 +1382,7 @@ export default async function BlogPostPage({ params }: Props) {
|
||||
</div>
|
||||
|
||||
{/* Content */}
|
||||
{renderMarkdown(post.content)}
|
||||
{renderMarkdown(post.content || '')}
|
||||
</article>
|
||||
</main>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user