1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +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;
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,