From df84ad4afdbfe2a7151855b90673613f64118c75 Mon Sep 17 00:00:00 2001 From: OlgunR Date: Mon, 24 Nov 2025 14:49:10 +0100 Subject: [PATCH] refactor(dashboard): correct component import and usage in DashboardPage --- src/client/dd-hub-react/src/pages/dashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/dd-hub-react/src/pages/dashboard.tsx b/src/client/dd-hub-react/src/pages/dashboard.tsx index a078c39..90516c2 100644 --- a/src/client/dd-hub-react/src/pages/dashboard.tsx +++ b/src/client/dd-hub-react/src/pages/dashboard.tsx @@ -1,6 +1,6 @@ import { CONFIG } from 'src/config-global'; -import { OverviewAnalyticsView as DashboardView } from 'src/sections/overview/view'; +import { OverviewAnalyticsView as DashboardView, OverviewAnalyticsView } from 'src/sections/overview/view'; // ---------------------------------------------------------------------- @@ -14,7 +14,7 @@ export default function Page() { /> - + ); }