Remove unused author property

This commit is contained in:
Dilson's Pickles
2023-09-13 13:36:08 +10:00
parent cbbf318476
commit 4f8ca817bb

View File

@@ -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 = {