From 04ce7e34f60ee3a790817bc2a287cb3b86db9d35 Mon Sep 17 00:00:00 2001 From: Edward Ezekiel Date: Wed, 21 May 2025 15:44:19 -0500 Subject: [PATCH] chore: flip show vulns config --- src/config/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/constants.ts b/src/config/constants.ts index bd63f792..879b87c2 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -6,5 +6,5 @@ export const config = { eolReportUrl: process.env.EOL_REPORT_URL || EOL_REPORT_URL, graphqlHost: process.env.GRAPHQL_HOST || GRAPHQL_HOST, graphqlPath: process.env.GRAPHQL_PATH || GRAPHQL_PATH, - showVulnCount: false, + showVulnCount: true, };