From a3e8930561ded7585c54f085ede2e62e0e6ca463 Mon Sep 17 00:00:00 2001 From: lalam Date: Sat, 24 May 2025 21:54:59 +0200 Subject: [PATCH] Update auth.md Console.log had the wrong logged value. --- docs/auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }) }