From 7b9d6142b4b7e24eb37d46375d8d541db8035eb1 Mon Sep 17 00:00:00 2001 From: itskovacs Date: Sat, 19 Jul 2025 12:06:51 +0200 Subject: [PATCH] :art: Minor cleanup --- .../components/dashboard/dashboard.component.html | 7 ++----- .../app/components/dashboard/dashboard.component.ts | 13 ++----------- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/src/src/app/components/dashboard/dashboard.component.html b/src/src/app/components/dashboard/dashboard.component.html index c29a094..9b4573c 100644 --- a/src/src/app/components/dashboard/dashboard.component.html +++ b/src/src/app/components/dashboard/dashboard.component.html @@ -5,7 +5,6 @@ (favoriteEmitter)="favoritePlace()" (visitEmitter)="visitPlace()" (closeEmitter)="closePlaceBox()"> } -
@@ -33,10 +32,8 @@ -
-
- -
+
+
@if (viewMarkersList) { diff --git a/src/src/app/components/dashboard/dashboard.component.ts b/src/src/app/components/dashboard/dashboard.component.ts index 9474b11..91e63c1 100644 --- a/src/src/app/components/dashboard/dashboard.component.ts +++ b/src/src/app/components/dashboard/dashboard.component.ts @@ -1,14 +1,5 @@ -import { AfterViewInit, Component, OnDestroy } from "@angular/core"; -import { - catchError, - combineLatest, - debounceTime, - forkJoin, - map, - of, - Subscription, - tap, -} from "rxjs"; +import { AfterViewInit, Component } from "@angular/core"; +import { combineLatest, debounceTime, tap } from "rxjs"; import { Place, Category } from "../../types/poi"; import { ApiService } from "../../services/api.service"; import { PlaceBoxComponent } from "../../shared/place-box/place-box.component";