Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
Filter by `certified` instead of `kudos` to account for manual certification. All `kudos` labelled issues are certified but not all `certified` issues are labelled `kudos`.
  • Loading branch information
CJ13th authored Oct 31, 2024
1 parent 3dea047 commit 6370e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/carnival/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default async function SingleEventPage() {
});

const query: IssueQueryParams = {
kudos: true,
certified: true,
open: true,
};
const issues = (await IssuesApi.getIssues({
Expand Down

0 comments on commit 6370e81

Please sign in to comment.