From 955711714dcd6b19b870bfb416d2f723a2654c28 Mon Sep 17 00:00:00 2001 From: Vincent Salucci <26154748+vincentsalucci@users.noreply.github.com> Date: Wed, 14 Oct 2020 08:59:40 -0500 Subject: [PATCH] [SSO] New user provision flow jslib update (5e0a2d1 -> d84d6da) (#70) * Updated import/constructor * Update jslib (5e0a2d1 -> d84d6da) --- jslib | 2 +- src/app/accounts/two-factor.component.ts | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) 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() {