From 2a9bcc1c297724776ed409f235f970f3911f6331 Mon Sep 17 00:00:00 2001 From: Jonathan Prusik Date: Wed, 25 Jun 2025 17:15:02 -0400 Subject: [PATCH] [PM-23053] Bugfix - Resolve duplicate identifier (#15339) * resolve duplicate identifier * remove duplicate restrictedItemTypesService declaration --- apps/browser/src/background/main.background.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/apps/browser/src/background/main.background.ts b/apps/browser/src/background/main.background.ts index 3f448ca1b0c..8acbd4373a0 100644 --- a/apps/browser/src/background/main.background.ts +++ b/apps/browser/src/background/main.background.ts @@ -412,7 +412,7 @@ export default class MainBackground { inlineMenuFieldQualificationService: InlineMenuFieldQualificationService; taskService: TaskService; cipherEncryptionService: CipherEncryptionService; - restrictedItemTypesService: RestrictedItemTypesService; + private restrictedItemTypesService: RestrictedItemTypesService; ipcContentScriptManagerService: IpcContentScriptManagerService; ipcService: IpcService; @@ -437,8 +437,6 @@ export default class MainBackground { private popupViewCacheBackgroundService: PopupViewCacheBackgroundService; - private restrictedItemTypesService: RestrictedItemTypesService; - constructor() { // Services const lockedCallback = async (userId: UserId) => { @@ -1047,13 +1045,6 @@ export default class MainBackground { this.sdkService, ); - this.restrictedItemTypesService = new RestrictedItemTypesService( - this.configService, - this.accountService, - this.organizationService, - this.policyService, - ); - this.individualVaultExportService = new IndividualVaultExportService( this.folderService, this.cipherService,