Angular 10
In my component I have a simple Observable:
me$: Observable<User> = this.store.select((s) => s.user);
I wish to show the user.firstName, but this is blank result:
<div>You are {{ me$.firstName | async }}</div>
If I use this, it works, so I know data is coming:
me$ = this.store.select((s) => s.user.firstName);