diff --git a/src/App.vue b/src/App.vue
index 6de7916b23a1ebb6f33fb8bd5c8bae4edf83be8e..6aeb0e570757a0879a907d81c7de19094bb5b86f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -145,13 +145,14 @@ const helpMessages = computed(() => {
 <template>
     <HelpComponent v-if="showHelp" :speech="helpMessages" />
     <div
-        class="min-h-screen bg-left-bottom bg-phone md:bg-pc bg-no-repeat" 
-        :style="backgroundImageStyle">
+        class="min-h-screen bg-left-bottom bg-phone md:bg-pc bg-no-repeat"
+        :style="backgroundImageStyle"
+    >
         <NavBarComponent v-if="showNavBar" />
-  
-      <main class="mb-10 ">
-          <RouterView />
-      </main>
+
+        <main class="mb-10">
+            <RouterView />
+        </main>
     </div>
 </template>
 
diff --git a/src/components/HelpComponent.vue b/src/components/HelpComponent.vue
index 7994c6b1345d6d1c4f15463654acc7e9be48d4f8..90182c9df571e9f5517529c93da5bc92ab0342fb 100644
--- a/src/components/HelpComponent.vue
+++ b/src/components/HelpComponent.vue
@@ -1,6 +1,6 @@
 <template>
     <div class="fixed bottom-5 right-5 hover:cursor-pointer z-50" @click="isModalOpen = true">
-        <img        
+        <img
             alt="Hjelp"
             class="h-10 transition-transform duration-300 ease-in-out hover:scale-110"
             src="@/assets/hjelp.png"
diff --git a/src/views/BiometricLoginView.vue b/src/views/BiometricLoginView.vue
index 195ce7de9b434e82e7b2b4ee8d191d013f866ecb..15d669023dc049728d7ceff61eea7e6c2c00ad20 100644
--- a/src/views/BiometricLoginView.vue
+++ b/src/views/BiometricLoginView.vue
@@ -19,13 +19,11 @@ const bioLogin = () => {
 <template>
     <div class="flex flex-col items-center h-screen gap-5 my-10">
         <h1>Hei {{ username }}, velkommen tilbake!💥</h1>
-        <button
-            class="primary"
-            @click="bioLogin">Biometrisk login</button>
+        <button class="primary" @click="bioLogin">Biometrisk login</button>
         <p>Ikke deg? Eller funker ikke biometrisk innlogging?</p>
-        <button 
-            class="primary"
-            @click="removeBioCredential">Logg inn med brukernavn og passord</button>
+        <button class="primary" @click="removeBioCredential">
+            Logg inn med brukernavn og passord
+        </button>
     </div>
 </template>
 
diff --git a/src/views/ManageConfigView.vue b/src/views/ManageConfigView.vue
index fd0eeec346c75625c953417d543baebeddb027c5..fac9e2fbdb3640b82088a70ac812ad5ad56a0b46 100644
--- a/src/views/ManageConfigView.vue
+++ b/src/views/ManageConfigView.vue
@@ -115,7 +115,9 @@ onMounted(() => {
                     <p class="font-bold">Passe</p>
                 </CardTemplate>
                 <CardTemplate
-                    :class="{ 'border-2 border-lime-400': configuration.motivation === 'VERY_HIGH' }"
+                    :class="{
+                        'border-2 border-lime-400': configuration.motivation === 'VERY_HIGH'
+                    }"
                     class="cursor-pointer p-4 border-2"
                     @click="configuration.motivation = 'VERY_HIGH'"
                 >
@@ -140,7 +142,9 @@ onMounted(() => {
                     <p class="font-bold">Noe kjent</p>
                 </CardTemplate>
                 <CardTemplate
-                    :class="{ 'border-2 border-lime-400': configuration.experience === 'VERY_HIGH' }"
+                    :class="{
+                        'border-2 border-lime-400': configuration.experience === 'VERY_HIGH'
+                    }"
                     class="cursor-pointer p-4 border-2"
                     @click="configuration.experience = 'VERY_HIGH'"
                 >
@@ -164,9 +168,11 @@ onMounted(() => {
                         v-text="'x'"
                     />
                 </CardTemplate>
-                <button 
+                <button
                     class="font-bold text-2xl cursor-pointer transition-transform duration-300 ease-in-out hover:scale-110 hover:opacity-100 justify-start"
-                    @click="createChallengeType" v-text="'Legg til flere📝'" />
+                    @click="createChallengeType"
+                    v-text="'Legg til flere📝'"
+                />
             </div>
 
             <div class="flex flex-row justify-center gap-5">
diff --git a/src/views/ManageProfileView.vue b/src/views/ManageProfileView.vue
index b64bd43d15f186d85cd4e22ebef4b3ab20490869..867724633a526dde00d4a392db4c67bdfbbaa590 100644
--- a/src/views/ManageProfileView.vue
+++ b/src/views/ManageProfileView.vue
@@ -236,11 +236,7 @@ const saveChanges = async () => {
 
                 <div class="flex flex-row justify-between">
                     <button class="primary danger" @click="router.back()" v-text="'Avbryt'" />
-                    <button
-                        class="primary"
-                        @click="saveChanges"
-                        v-text="'Lagre endringer'"
-                    />
+                    <button class="primary" @click="saveChanges" v-text="'Lagre endringer'" />
                 </div>
             </div>
         </div>
diff --git a/src/views/ViewProfileView.vue b/src/views/ViewProfileView.vue
index 9f09c81b377cf26d3c0b6791675b84bf791077f6..47e1ac6a7dcc2cbf9bad622c4db113c08010d2ae 100644
--- a/src/views/ViewProfileView.vue
+++ b/src/views/ViewProfileView.vue
@@ -99,17 +99,17 @@ const openSpare = () => {
                     />
                 </CardTemplate>
 
-                <button 
+                <button
                     class="primary secondary"
-                    @click="router.push({ name: 'edit-profile' })" v-text="'Rediger bruker'" />
+                    @click="router.push({ name: 'edit-profile' })"
+                    v-text="'Rediger bruker'"
+                />
                 <button
                     class="primary secondary"
                     @click="router.push({ name: 'edit-configuration' })"
                     v-text="'Rediger konfigurasjon'"
                 />
-                <button 
-                    class="primary"
-                    @click="updateBiometrics">
+                <button class="primary" @click="updateBiometrics">
                     {{ profile?.hasPasskey ? 'Endre biometri' : 'Legg til biometri' }}
                 </button>
             </div>