From 93073e6ac38c69bbc4bafbf4411942d10db4fa53 Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 2 Feb 2026 03:58:46 -0800 Subject: [PATCH] =?UTF-8?q?feat(routing):=20=E2=9C=A8=20Add/modify=20worke?= =?UTF-8?q?r-related=20routes=20in=20Marketplace=20frontend=20navigation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../src/app/routing/trees/WorkerRoutes.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/features/marketplace/frontend-public/src/app/routing/trees/WorkerRoutes.tsx b/features/marketplace/frontend-public/src/app/routing/trees/WorkerRoutes.tsx index ff25f9edb..7670a4314 100644 --- a/features/marketplace/frontend-public/src/app/routing/trees/WorkerRoutes.tsx +++ b/features/marketplace/frontend-public/src/app/routing/trees/WorkerRoutes.tsx @@ -125,10 +125,8 @@ const AnalyticsFunnelPage = lazy(() => import('@/features/worker/analytics/pages const WorkerReviewsPage = lazy( () => import('@features/worker/pages/WorkerReviewsPage') ); -const NotificationsPage = lazy(() => - import('@features/notifications/pages/NotificationsPage').then((m) => ({ - default: m.NotificationsPage, - })) +const WorkerNotificationsPage = lazy( + () => import('@features/worker/pages/WorkerNotificationsPage') ); // ============================================ @@ -316,7 +314,7 @@ export const WorkerRoutes = () => { ======================================== */} } /> - } /> + } /> {/* ======================================== ACCOUNT SERVICES @@ -361,6 +359,10 @@ export const WorkerRoutes = () => { element={} /> } /> + } + /> }