From c036504482676e8c13af4112337962c0b8a397db Mon Sep 17 00:00:00 2001 From: Theodore Kruczek Date: Sun, 14 Jan 2024 18:52:00 -0500 Subject: [PATCH] refactor: :recycle: remove unintentional formatting change --- src/components/blog/SinglePost.astro | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/blog/SinglePost.astro b/src/components/blog/SinglePost.astro index cba4d61..a2169c1 100644 --- a/src/components/blog/SinglePost.astro +++ b/src/components/blog/SinglePost.astro @@ -84,7 +84,13 @@ const { Content } = post;
- {Content ? : } + { + Content ? ( + + ) : ( + + ) + }