We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45e30f4 commit 04d2375Copy full SHA for 04d2375
src/app/authorize/pages/authorize/authorize.component.ts
@@ -66,12 +66,22 @@ export class AuthorizeComponent {
66
togglz: this.loadTogglzState(),
67
emails: this.loadEmails(),
68
})
69
- .pipe(tap(() => this.loadInterstitialViewed()))
+ .pipe(
70
+ tap(({ userSession }) => {
71
+ if (this.isUserLoggedIn(userSession)) {
72
+ this.loadInterstitialViewed()
73
+ }
74
+ })
75
+ )
76
.subscribe(({ userSession }) => {
77
this.handleUserSession(userSession)
78
79
}
80
81
+ private isUserLoggedIn(userSession: any): boolean {
82
+ return !!userSession?.userSession?.userInfo
83
84
+
85
/**
86
* Called by template to handle final redirection.
87
*/
0 commit comments