From 77acd7c517723585ebe730331c3d49077f81785b Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 9 Nov 2025 14:56:25 -0500 Subject: [PATCH] fix(ci): more cleanup --- src/pages/[category]/[slug].astro | 4 ++-- src/pages/index.astro | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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";