We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba687a8 commit 0ab656eCopy full SHA for 0ab656e
src/app/auth.service.ts
@@ -52,7 +52,7 @@ export class AuthService {
52
return;
53
}
54
55
- console.warn('Noticed changes to access_token (possibly from another tab), updating isAuthenticated');
+ console.warn('Noticed changes to access_token (most likely from another tab), updating isAuthenticated');
56
this.isAuthenticatedSubject$.next(this.oauthService.hasValidAccessToken());
57
58
if (!this.oauthService.hasValidAccessToken()) {
@@ -123,7 +123,9 @@ export class AuthService {
123
//
124
// Enable this to ALWAYS force a user to login.
125
// this.oauthService.initImplicitFlow();
126
-
+ //
127
+ // Instead, we'll now do this:
128
+ console.warn('User interaction is needed to log in, we will wait for the user to manually log in.');
129
return Promise.resolve();
130
131
0 commit comments