Skip to content

Commit 45e30f4

Browse files
committed
load interstitials after loading user session in oauth
1 parent 05a69e5 commit 45e30f4

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/app/authorize/pages/authorize/authorize.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,13 @@ export class AuthorizeComponent {
6363
forkJoin({
6464
userSession: this.loadUserSession(),
6565
platform: this.loadPlatformInfo(),
66-
interstitial: this.loadInterstitialViewed(),
6766
togglz: this.loadTogglzState(),
6867
emails: this.loadEmails(),
69-
}).subscribe(({ userSession }) => {
70-
this.handleUserSession(userSession)
7168
})
69+
.pipe(tap(() => this.loadInterstitialViewed()))
70+
.subscribe(({ userSession }) => {
71+
this.handleUserSession(userSession)
72+
})
7273
}
7374

7475
/**

0 commit comments

Comments
 (0)