diff --git a/src/components/PostList.astro b/src/components/PostList.astro index eaaced6..7f1dcff 100644 --- a/src/components/PostList.astro +++ b/src/components/PostList.astro @@ -1,5 +1,6 @@ --- -import { CollectionEntry, getCollection } from 'astro:content'; +import type { CollectionEntry } from 'astro:content'; +import { getCollection } from 'astro:content'; export interface Props { filterFn?: (entry: CollectionEntry<'blog'>) => unknown;