From 4f8ca817bb7dbbb6ef19e9a09c80971e10ebb411 Mon Sep 17 00:00:00 2001 From: Dilson's Pickles Date: Wed, 13 Sep 2023 13:36:08 +1000 Subject: [PATCH] Remove unused author property --- src/components/card/NEWBlogPostCard.astro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/card/NEWBlogPostCard.astro b/src/components/card/NEWBlogPostCard.astro index 01be55a..de480a9 100644 --- a/src/components/card/NEWBlogPostCard.astro +++ b/src/components/card/NEWBlogPostCard.astro @@ -2,13 +2,12 @@ export interface Props { title: string; description: string; - author: string; href: string; publishDate: Date; cover: ImageMetadata; coverAlt: string; } -const { title, author, href, publishDate, description, cover, coverAlt } = +const { title, href, publishDate, description, cover, coverAlt } = Astro.props; const options = {