diff --git a/src/app/components/dashboard-charts/dashboard-charts.component.ts b/src/app/components/dashboard-charts/dashboard-charts.component.ts
index a3327494b46a992d76b83bd78efabb5492bb73a2..91d36806a8f4f381aa5375236be4af18b356fc32 100644
--- a/src/app/components/dashboard-charts/dashboard-charts.component.ts
+++ b/src/app/components/dashboard-charts/dashboard-charts.component.ts
@@ -39,7 +39,6 @@ export class DashboardChartsComponent {
   constructor() {
     this.settingsService.settingsObserver$.subscribe(settings => {
       this.settings = settings;
-      console.log('Settings received in charts:', this.settings);
     });
   }
 
diff --git a/src/app/components/dashboard-statistics/dashboard-statistics.component.scss b/src/app/components/dashboard-statistics/dashboard-statistics.component.scss
index 1814cde44062606f60a7b4b46d79c24358451e82..6c25990eaae01dad2680ea01405b7a3d1d7c40ce 100644
--- a/src/app/components/dashboard-statistics/dashboard-statistics.component.scss
+++ b/src/app/components/dashboard-statistics/dashboard-statistics.component.scss
@@ -6,6 +6,7 @@
     display: flex;
     flex-direction: row;
     gap: map.get(vars.$spacing, 'md');
+
     ::ng-deep * {
       height: 50px;
     }
diff --git a/src/app/components/dashboard-statistics/dashboard-statistics.component.ts b/src/app/components/dashboard-statistics/dashboard-statistics.component.ts
index ba39e03963d6d17454d245f006a9dfb21e3b132a..df46c05927686c924f0f850bc97c6447fcbb4225 100644
--- a/src/app/components/dashboard-statistics/dashboard-statistics.component.ts
+++ b/src/app/components/dashboard-statistics/dashboard-statistics.component.ts
@@ -38,7 +38,6 @@ export class DashboardStatisticsComponent implements OnInit {
   ngOnInit() {
     this.settingsService.settingsObserver$.subscribe(settings => {
       this.settings = settings;
-      console.log('Settings received in Dashboard:', this.settings);
     });
   }
 
diff --git a/src/app/service/settings.service.ts b/src/app/service/settings.service.ts
index 8c8d3e1954d497e5bd1761c6e3a34f0604cc9479..77ad00c2308e766f858291621d17364cb675996b 100644
--- a/src/app/service/settings.service.ts
+++ b/src/app/service/settings.service.ts
@@ -1,4 +1,4 @@
-import { Injectable, OnInit } from '@angular/core';
+import { Injectable } from '@angular/core';
 import { BehaviorSubject } from 'rxjs';
 import { Settings } from '../models/settings';