From 76643e86b2194aa5e28e7b405cfb0f2a621f4875 Mon Sep 17 00:00:00 2001 From: prototypa Date: Wed, 30 Aug 2023 14:07:13 -0400 Subject: [PATCH] Minimal fix to Content --- src/components/blog/SinglePost.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ? ( ) : ( - + ) }