Remove unused bits

This commit is contained in:
Cassidy Williams
2022-11-27 22:45:32 -06:00
parent dc4d1c392c
commit bc3084e2a3
2 changed files with 1 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ const posts = (await Astro.glob("../posts/*.md")).sort(
({
url,
frontmatter: { description, slug, title, tags, added: date },
}) => <Post {url} {description} {date} {slug} {title} {tags} />
}) => <Post {description} {date} {slug} {title} {tags} />
)
}
</ul>