From 1d1b31f524882fd7f2f9fe66461202d9874feb3a Mon Sep 17 00:00:00 2001 From: Ayo Date: Sun, 14 May 2023 00:15:19 +0200 Subject: [PATCH] fix: remove test author data --- src/components/post.astro | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/post.astro b/src/components/post.astro index 9e06709..e2529b3 100644 --- a/src/components/post.astro +++ b/src/components/post.astro @@ -7,7 +7,6 @@ export interface Props { const article = Astro.props.article; const datePublished = article?.published && new Date(article.published).toDateString(); -article.author = "Ayo Ayco"; --- {