diff --git a/jslib b/jslib index 5cb3e9c9..d84d6da7 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 5cb3e9c965269a7e442536fa1b6ba00add2c7153 +Subproject commit d84d6da7f77ec89ba69299b1ff982f083fd77203 diff --git a/src/app/accounts/two-factor.component.ts b/src/app/accounts/two-factor.component.ts index ca914a98..c7cd2ba1 100644 --- a/src/app/accounts/two-factor.component.ts +++ b/src/app/accounts/two-factor.component.ts @@ -5,7 +5,10 @@ import { ViewContainerRef, } from '@angular/core'; -import { Router } from '@angular/router'; +import { + ActivatedRoute, + Router, +} from '@angular/router'; import { TwoFactorOptionsComponent } from './two-factor-options.component'; @@ -33,9 +36,9 @@ export class TwoFactorComponent extends BaseTwoFactorComponent { i18nService: I18nService, apiService: ApiService, platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService, private componentFactoryResolver: ComponentFactoryResolver, stateService: StateService, - storageService: StorageService) { + storageService: StorageService, route: ActivatedRoute) { super(authService, router, i18nService, apiService, platformUtilsService, window, environmentService, - stateService, storageService); + stateService, storageService, route); } async ngOnInit() {