diff --git a/docs/auth.md b/docs/auth.md index 8ce5a51aa..e2632019b 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -172,7 +172,7 @@ export class UserComponent implements OnDestroy { constructor() { this.idTokenSubscription = this.idToken$.subscribe((token: string | null) => { //handle idToken changes here. Note, that user will be null if there is no currently logged in user. - console.log(string); + console.log(token); }) }