1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

Undo broadcast service refs (not needed)

This commit is contained in:
Chad Scharf
2020-11-02 17:08:39 -05:00
parent d8d1ee3022
commit 5ff545e541
4 changed files with 5 additions and 14 deletions

View File

@@ -8,8 +8,6 @@ import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { ExportComponent as BaseExportComponent } from 'jslib/angular/components/export.component';
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
@Component({
selector: 'app-export',
templateUrl: 'export.component.html',
@@ -17,8 +15,7 @@ import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
export class ExportComponent extends BaseExportComponent {
constructor(cryptoService: CryptoService, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, exportService: ExportService,
eventService: EventService, broadcasterService: BroadcasterService) {
super(cryptoService, i18nService, platformUtilsService, exportService, eventService, window,
broadcasterService);
eventService: EventService) {
super(cryptoService, i18nService, platformUtilsService, exportService, eventService, window);
}
}