diff --git a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-type-guards.ts b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-type-guards.ts index bcd45e4719d..b44f64d4021 100644 --- a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-type-guards.ts +++ b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/domain/risk-insights-type-guards.ts @@ -230,7 +230,7 @@ export function isOrganizationReportSummary(obj: any): obj is OrganizationReport Number.isSafeInteger(obj.totalCriticalAtRiskApplicationCount) && obj.totalCriticalAtRiskApplicationCount >= 0 && obj.totalCriticalAtRiskApplicationCount <= MAX_COUNT && - // newApplications is optional (backward compatibility - not in type definition) + // newApplications is optional (backward compatibility - legacy encrypted data predates this field) (obj.newApplications === undefined || (Array.isArray(obj.newApplications) && obj.newApplications.length <= MAX_ARRAY_LENGTH &&