diff --git a/src/App.vue b/src/App.vue
index 0236374e935b47547e50478033e896fedcb29c87..ebff79b987d27e4ebb91e825428b5fc44a7b3e0a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -10,7 +10,8 @@ const showNavBar = computed(() => {
         route.path == '/' ||
         route.path == '/registrer' ||
         route.path == '/logginn' ||
-        route.path == '/forgotPassword'
+        route.path == '/forgotPassword' ||
+        route.path.startsWith('/konfigurasjon')
     )
 })
 </script>
diff --git a/src/router/index.ts b/src/router/index.ts
index d30507b3069a5736a759bdb4a7db9d0e33fd1a6b..21f08391426f9c7de814a7f805be58ad38f13689 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -88,6 +88,11 @@ const router = createRouter({
             name: 'configurations5',
             component: () => import('@/views/ConfigSpendingItemsTotalAmountView.vue')
         },
+        {
+            path: '/konfigurasjonSteg6',
+            name: 'configurations6',
+            component: () => import('@/views/ConfigAccountNumberView.vue')
+        },
         {
             path: '/forsteSparemaal',
             name: 'firstSavingGoal',