summaryrefslogtreecommitdiff
path: root/src/components/blog/PostPreview.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/blog/PostPreview.astro')
-rw-r--r--src/components/blog/PostPreview.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/blog/PostPreview.astro b/src/components/blog/PostPreview.astro
index fc1a9a3..cbe747e 100644
--- a/src/components/blog/PostPreview.astro
+++ b/src/components/blog/PostPreview.astro
@@ -1,7 +1,7 @@
---
import type { CollectionEntry } from "astro:content";
-import FormattedDate from "@/components/FormattedDate.astro";
import type { HTMLTag, Polymorphic } from "astro/types";
+import FormattedDate from "@/components/FormattedDate.astro";
type Props<Tag extends HTMLTag> = Polymorphic<{ as: Tag }> & {
post: CollectionEntry<"post">;