diff --git a/projects/nshmp-apps/src/app/app.routes.ts b/projects/nshmp-apps/src/app/app.routes.ts
index a6c137f6a50a8dd5319e04761b32cad82087b368..e4a7a888a93d78ef6e2d7671bedf3ac2fc1a9d40 100644
--- a/projects/nshmp-apps/src/app/app.routes.ts
+++ b/projects/nshmp-apps/src/app/app.routes.ts
@@ -80,9 +80,8 @@ const routes: Routes = [
     data: {
       label: 'Services',
     },
-    loadComponent: () =>
-      import('./services/app.component').then(com => com.AppComponent),
     path: 'services',
+    redirectTo: 'ws/nshmp',
   },
   // Error pages for reverse proxy errors
   {
diff --git a/projects/nshmp-ws/src/app/app.routes.ts b/projects/nshmp-ws/src/app/app.routes.ts
index 9f4109e0cf44a2ac47252a4d730f9d42aecf2019..19113c311e3b4626dd84ceb9d23349ed87e2fa98 100644
--- a/projects/nshmp-ws/src/app/app.routes.ts
+++ b/projects/nshmp-ws/src/app/app.routes.ts
@@ -9,7 +9,7 @@ const routes: Routes = [
           label: 'Services',
         },
         loadComponent: () =>
-          import('./dashboard/app.component').then(com => com.AppComponent),
+          import('./services/app.component').then(com => com.AppComponent),
         path: '',
       },
       {