1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

[PM-23053] Bugfix - Resolve duplicate identifier (#15339)

* resolve duplicate identifier

* remove duplicate restrictedItemTypesService declaration
This commit is contained in:
Jonathan Prusik
2025-06-25 17:15:02 -04:00
committed by GitHub
parent 7403b38f39
commit 2a9bcc1c29

View File

@@ -412,7 +412,7 @@ export default class MainBackground {
inlineMenuFieldQualificationService: InlineMenuFieldQualificationService; inlineMenuFieldQualificationService: InlineMenuFieldQualificationService;
taskService: TaskService; taskService: TaskService;
cipherEncryptionService: CipherEncryptionService; cipherEncryptionService: CipherEncryptionService;
restrictedItemTypesService: RestrictedItemTypesService; private restrictedItemTypesService: RestrictedItemTypesService;
ipcContentScriptManagerService: IpcContentScriptManagerService; ipcContentScriptManagerService: IpcContentScriptManagerService;
ipcService: IpcService; ipcService: IpcService;
@@ -437,8 +437,6 @@ export default class MainBackground {
private popupViewCacheBackgroundService: PopupViewCacheBackgroundService; private popupViewCacheBackgroundService: PopupViewCacheBackgroundService;
private restrictedItemTypesService: RestrictedItemTypesService;
constructor() { constructor() {
// Services // Services
const lockedCallback = async (userId: UserId) => { const lockedCallback = async (userId: UserId) => {
@@ -1047,13 +1045,6 @@ export default class MainBackground {
this.sdkService, this.sdkService,
); );
this.restrictedItemTypesService = new RestrictedItemTypesService(
this.configService,
this.accountService,
this.organizationService,
this.policyService,
);
this.individualVaultExportService = new IndividualVaultExportService( this.individualVaultExportService = new IndividualVaultExportService(
this.folderService, this.folderService,
this.cipherService, this.cipherService,