diff --git a/src/components/blog/SinglePost.astro b/src/components/blog/SinglePost.astro index ecf0a91..c4b621c 100644 --- a/src/components/blog/SinglePost.astro +++ b/src/components/blog/SinglePost.astro @@ -16,7 +16,7 @@ export interface Props { } const { post, url } = Astro.props; -const Content = post?.Content || null; +const { Content } = post; ---
@@ -79,7 +79,7 @@ const Content = post?.Content || null; Content ? ( ) : ( - + ) }