From: Cameron Otsuka Date: Sun, 15 Jun 2025 21:20:14 +0000 (-0700) Subject: temp fix typing X-Git-Tag: v2.0.0~1 X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=d060130838e9a48bd1cb202868e01e5e5343bd1e;p=cotsuka.github.io temp fix typing --- 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,