We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15076ad commit 5265410Copy full SHA for 5265410
src/pages/changelog/index.astro
@@ -12,7 +12,7 @@ import { format } from "date-fns";
12
import { getChangelogs } from "~/util/changelog";
13
14
const notes = await getChangelogs({
15
- filter: (entry) => Boolean(entry.data.hidden),
+ filter: (entry) => !entry.data.hidden,
16
});
17
18
const props = {
src/pages/changelog/rss/index.xml.ts
@@ -4,7 +4,7 @@ import { getChangelogs, getRSSItems } from "~/util/changelog";
4
5
export const GET: APIRoute = async ({ locals }) => {
6
7
8
9
10
const items = await getRSSItems({
0 commit comments