diff --git a/app/changelog/feed.xml/route.ts b/app/changelog/feed.xml/route.ts index 178632ba4680fc..7c6644c3b3820e 100644 --- a/app/changelog/feed.xml/route.ts +++ b/app/changelog/feed.xml/route.ts @@ -20,12 +20,14 @@ export async function GET() { allChangelogs.map(changelog => { return feed.item({ title: changelog.title, + // @ts-expect-error TODO(lforst): This is broken for some reason description: changelog.summary, url: `https://sentry.io/changelog/${changelog.slug}`, categories: changelog.categories.map(category => { return category.name; }) || [], + // @ts-expect-error TODO(lforst): This is broken for some reason date: changelog.publishedAt, }); });