Skip to content

Commit c3d4657

Browse files
committed
Fix type error.
1 parent f6818c2 commit c3d4657

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

components/blog/BlogPostContent.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default function BlogPostContent({ content }: BlogPostContentProps) {
1212
if (!content) return null;
1313
return (
1414
<div className="prose prose-lg max-w-none dark:prose-invert prose-headings:text-gray-900 dark:prose-headings:text-white prose-p:text-gray-700 dark:prose-p:text-gray-300 prose-a:text-blue-600 dark:prose-a:text-blue-400 prose-strong:text-gray-900 dark:prose-strong:text-white prose-code:text-gray-900 dark:prose-code:text-white prose-pre:bg-gray-100 dark:prose-pre:bg-gray-800 prose-headings:text-left prose-p:text-left">
15-
{/* @ts-expect-error Server Component MDXRemote */}
1615
<MDXRemote source={content} components={components} />
1716
</div>
1817
);

0 commit comments

Comments
 (0)