1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-03 02:03:53 +00:00

refactor(dirt): remove dummy newApplications data

Remove hardcoded dummy data now that newApplications are dynamically
calculated from applicationData. Summary's newApplications field
set to empty array as it's populated reactively.

Related to PM-27284
This commit is contained in:
Claude
2025-10-28 21:22:26 +00:00
parent de82d28793
commit 4db6203e4e

View File

@@ -56,23 +56,6 @@ export class RiskInsightsReportService {
const atRiskMembers = reports.flatMap((x) => x.atRiskMemberDetails);
const uniqueAtRiskMembers = getUniqueMembers(atRiskMembers);
// TODO: Replace with actual new applications detection logic (PM-26185)
const dummyNewApplications = [
"github.com",
"google.com",
"stackoverflow.com",
"gitlab.com",
"bitbucket.org",
"npmjs.com",
"docker.com",
"aws.amazon.com",
"azure.microsoft.com",
"jenkins.io",
"terraform.io",
"kubernetes.io",
"atlassian.net",
];
return {
totalMemberCount: uniqueMembers.length,
totalAtRiskMemberCount: uniqueAtRiskMembers.length,
@@ -82,7 +65,8 @@ export class RiskInsightsReportService {
totalCriticalAtRiskMemberCount: 0,
totalCriticalApplicationCount: 0,
totalCriticalAtRiskApplicationCount: 0,
newApplications: dummyNewApplications,
// newApplications now derived from applicationData in orchestrator's newApplications$ observable
newApplications: [],
};
}