diff --git a/src/popup/vault/current-tab.component.ts b/src/popup/vault/current-tab.component.ts index d93bad7d86..2689347365 100644 --- a/src/popup/vault/current-tab.component.ts +++ b/src/popup/vault/current-tab.component.ts @@ -70,11 +70,11 @@ export class CurrentTabComponent implements OnInit, OnDestroy { private changeDetectorRef: ChangeDetectorRef, private syncService: SyncService, private searchService: SearchService, private storageService: StorageService, route: ActivatedRoute) { - route.params.subscribe(async (val) => { + route.params.subscribe((val) => { console.log('route.params.subscribe'); if (platformUtilsService.getDevice() === DeviceType.SafariExtension) { console.log(val); - await this.init(); + this.init(); } }); }