diff --git a/libs/feature/record/src/lib/map-view/map-view.component.ts b/libs/feature/record/src/lib/map-view/map-view.component.ts index 95f4f39c3a..87e40b8fd8 100644 --- a/libs/feature/record/src/lib/map-view/map-view.component.ts +++ b/libs/feature/record/src/lib/map-view/map-view.component.ts @@ -64,7 +64,6 @@ export class MapViewComponent implements OnInit, OnDestroy { ) dropdownChoices$ = this.compatibleMapLinks$.pipe( - tap(() => (this.loading = true)), map((links) => links.length ? links.map((link, index) => ({ @@ -72,8 +71,7 @@ export class MapViewComponent implements OnInit, OnDestroy { value: index, })) : [{ label: 'No preview layer', value: 0 }] - ), - finalize(() => (this.loading = false)) + ) ) selectedLinkIndex$ = new BehaviorSubject(0)