diff --git a/src/components/BaseComponents/NavBar.vue b/src/components/BaseComponents/NavBar.vue
index ea5b6c44b863d4bf852566cd01305b02e271fa26..e6c1827cec24f450e618b9f1a648f6a0f8dd4149 100644
--- a/src/components/BaseComponents/NavBar.vue
+++ b/src/components/BaseComponents/NavBar.vue
@@ -119,7 +119,7 @@
                   <img src="@/assets/icons/feedback.svg">Tilbakemelding
                 </router-link>
               </li>
-              <li>
+              <li v-if="useUserInfoStore().role === 'ADMIN'">
                 <router-link data-cy="admin"
                   class="dropdown-item dropdown-username-link"
                   :to="toAdmin()"
diff --git a/src/components/Configuration/ConfigurationSteps/BankAccount.vue b/src/components/Configuration/ConfigurationSteps/BankAccount.vue
index 7c25f6068f7067ba91f3504d4d26aa8fbcb535f3..9ffde7b48fd03b8dca31c1e69b29f5decb9999ac 100644
--- a/src/components/Configuration/ConfigurationSteps/BankAccount.vue
+++ b/src/components/Configuration/ConfigurationSteps/BankAccount.vue
@@ -5,7 +5,6 @@ import { ref } from 'vue'
 import BaseInput from '@/components/BaseComponents/Input/BaseInput.vue'
 import { useConfigurationStore } from '@/stores/ConfigurationStore'
 import { AccountControllerService } from '@/api'
-import handleUnknownError from '@/components/Exceptions/unkownErrorHandler'
 
 const router = useRouter();