We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e6708 commit fe82747Copy full SHA for fe82747
docs/auth.md
@@ -76,7 +76,7 @@ export class UserComponent implements OnDestroy {
76
...
77
78
constructor() {
79
- this.userSubscription = this.user$.subscribe(aUser: User | null => {
+ this.userSubscription = this.user$.subscribe((aUser: User | null) => {
80
//handle user state changes here. Note, that user will be null if there is no currently logged in user.
81
console.log(aUser);
82
})
0 commit comments