From d060130838e9a48bd1cb202868e01e5e5343bd1e Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Sun, 15 Jun 2025 14:20:14 -0700 Subject: [PATCH] temp fix typing --- src/pages/feed.xml.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/feed.xml.ts b/src/pages/feed.xml.ts index 403838a..96c6e18 100644 --- a/src/pages/feed.xml.ts +++ b/src/pages/feed.xml.ts @@ -3,7 +3,7 @@ import { getCollection } from 'astro:content'; import { formatDate } from '@utils/format.ts'; import Metadata from '@data/metadata.json'; -export async function GET(context) { +export async function GET(context: any) { const articles = await getCollection('articles'); const articleItems = articles.map((article) => ({ title: article.data.title, -- 2.51.0