From f8f1ff90d49a5374cc64b8606d9313521ca72eb3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Anders=20H=C3=B8vik?= <andehovi@stud.ntnu.no>
Date: Mon, 22 Apr 2024 12:36:00 +0200
Subject: [PATCH] refactoring of updateUserLayout

---
 src/components/UpdateUserComponents/UpdateUserLayout.vue | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/components/UpdateUserComponents/UpdateUserLayout.vue b/src/components/UpdateUserComponents/UpdateUserLayout.vue
index 4d94d2f..bc0de4f 100644
--- a/src/components/UpdateUserComponents/UpdateUserLayout.vue
+++ b/src/components/UpdateUserComponents/UpdateUserLayout.vue
@@ -57,9 +57,6 @@ const handleConfirmPasswordInputEvent = (newValue: any) => {
 }
 
 const handleSubmit = async () => {
-  console.log(firstNameRef.value)
-
-  let isValid
 
   samePasswords.value = (passwordRef.value === confirmPasswordRef.value)
   console.log(samePasswords.value)
@@ -76,7 +73,7 @@ const handleSubmit = async () => {
 
 
 
-    // Check if the form is valid
+
     if (form.checkValidity()) {
       if(samePasswords.value){
         try {
-- 
GitLab