diff --git a/src/pages/[category]/[slug].astro b/src/pages/[category]/[slug].astro index ae4a1b0..aa1c7ce 100644 --- a/src/pages/[category]/[slug].astro +++ b/src/pages/[category]/[slug].astro @@ -1,5 +1,5 @@ --- -import { getCollection, type CollectionEntry } from "astro:content"; +import { getCollection } from "astro:content"; import PostLayout from "../../layouts/PostLayout.astro"; import * as collections from "../../content/config"; import type { PostCollection, AnyCollectionEntry } from "../../types"; @@ -43,7 +43,7 @@ if (post.data?.redirect) { {pageTitle} - + diff --git a/src/pages/index.astro b/src/pages/index.astro index 60a885a..e0d0818 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,7 +1,7 @@ --- import BaseLayout from "../layouts/BaseLayout.astro"; import { sortItem } from "../utils/sort.js"; -import { getCollection, type CollectionEntry } from "astro:content"; +import { getCollection } from "astro:content"; import type { PostCollection } from "../types"; const title = "Barrett Ruth";