Skip to content

Commit

Permalink
ts?
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Jul 24, 2024
1 parent 7a3a46d commit c29fffb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/changelog/feed.xml/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
});
Expand Down

0 comments on commit c29fffb

Please sign in to comment.