From f59768ce17f1c279405083d93a6952c2497f5132 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 10 Nov 2025 21:20:22 +0100 Subject: [PATCH] added new route for userprofile --- interface/src/AuthenticatedRouting.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/AuthenticatedRouting.tsx b/interface/src/AuthenticatedRouting.tsx index 8188f6282..1be5b0f49 100644 --- a/interface/src/AuthenticatedRouting.tsx +++ b/interface/src/AuthenticatedRouting.tsx @@ -13,6 +13,7 @@ const Customizations = lazy(() => import('app/main/Customizations')); const Scheduler = lazy(() => import('app/main/Scheduler')); const CustomEntities = lazy(() => import('app/main/CustomEntities')); const Modules = lazy(() => import('app/main/Modules')); +const UserProfile = lazy(() => import('app/main/UserProfile')); const Status = lazy(() => import('app/status/Status')); const HardwareStatus = lazy(() => import('app/status/HardwareStatus')); @@ -43,6 +44,7 @@ const AuthenticatedRouting = memo(() => { } /> } /> } /> + } /> } /> } />