diff --git a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/risk-insights-encryption.service.ts b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/risk-insights-encryption.service.ts index 35ad002746b..c4b09c96d0a 100644 --- a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/risk-insights-encryption.service.ts +++ b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/services/risk-insights-encryption.service.ts @@ -20,7 +20,7 @@ export class RiskInsightsEncryptionService { private keyGeneratorService: KeyGenerationService, ) {} - async generateEncryptedRiskInsightsReport( + async encryptRiskInsightsReport( organizationId: OrganizationId, details: ApplicationHealthReportDetail[], summary: ApplicationHealthReportSummary, diff --git a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications.component.ts b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications.component.ts index 846a3249b88..e6f675e6cf7 100644 --- a/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications.component.ts +++ b/bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications.component.ts @@ -232,7 +232,7 @@ export class AllApplicationsComponent implements OnInit { debounceTime(500), switchMap(async (report) => { if (report && report.organization?.id && report.data && report.summary) { - const data = await this.reportDecipherService.generateEncryptedRiskInsightsReport( + const data = await this.reportDecipherService.encryptRiskInsightsReport( report.organization.id as OrganizationId, report.data, report.summary,