I have the following template:
<app-order-about [application]="(applicationObs | async)?.application"></app-order-about>
<app-order-documents [documents]="(applicationObs | async)?.application?.documents"></app-order-documents>
I dislike this notation: ?.application?.documents
because it is long and it looks awful.
Also async
calls observer request twice, could I use promise instead?