]> git.otsuka.systems Git - cotsuka.github.io/commitdiff
temp fix typing
authorCameron Otsuka <cameron@otsuka.haus>
Sun, 15 Jun 2025 21:20:14 +0000 (14:20 -0700)
committerCameron Otsuka <cameron@otsuka.haus>
Sun, 15 Jun 2025 21:20:14 +0000 (14:20 -0700)
src/pages/feed.xml.ts

index 403838a9c75a2a30d2ef8ebf437be8858f3d06a6..96c6e185144a0b206da85b09e4cf507fe05a22bc 100644 (file)
@@ -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,