ОС
логику с isLoading$ нужно перенести в AppComponent
this.vm$ = this.reloadTrigger$.pipe(
startWith(null),
switchMapTo(this.mainService.getData().pipe(
map(data => ({isLoading: false, data})),
startWith({isLoading: true, data: null})
)),
)
https://stackblitz.com/edit/angular-ivy-2yj3rv?file=src/app/wrap/wrap.component.html