From e9aa4054648f6620d67f5fda035eeb58c0c78a6c Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 3 Jul 2025 14:57:59 +0200 Subject: [PATCH] Update default route to ProductsPage in sections.tsx Replaced the DashboardPage component with ProductsPage for the default index route in the routesSection array. --- src/client/dd-hub-react/src/routes/sections.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/dd-hub-react/src/routes/sections.tsx b/src/client/dd-hub-react/src/routes/sections.tsx index 20009c7..9b6fb46 100644 --- a/src/client/dd-hub-react/src/routes/sections.tsx +++ b/src/client/dd-hub-react/src/routes/sections.tsx @@ -49,7 +49,7 @@ export const routesSection: RouteObject[] = [ ), children: [ - { index: true, element: }, + { index: true, element: }, { path: 'user', element: }, { path: 'products', element: }, { path: 'blog', element: },