Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: only show lengths on gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Sep 11, 2024
1 parent c4622f6 commit 14cd521
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/api/system/checks/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export async function GET(request, { params }) {
console.log("CHECKS PERFORMED", runs);

return Response.json({
runs,
ignores: repoStatus.ignore,
errors: repoStatus.error,
runs: runs.length,
ignores: repoStatus.ignore.length,
errors: repoStatus.error.length,
});
}

0 comments on commit 14cd521

Please sign in to comment.