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()">
}
-
-
+
@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";