diff --git a/src/components/UserProfileComponents/UserItems.vue b/src/components/UserProfileComponents/UserItems.vue
index b20cc54235d7912027965299414328313fdd1162..0719878ef48d9833d7ce92acecb177d4aa52de6d 100644
--- a/src/components/UserProfileComponents/UserItems.vue
+++ b/src/components/UserProfileComponents/UserItems.vue
@@ -263,12 +263,10 @@ export default {
       }
     },
     goToDeleteItem(item) {
-      console.log("Halllllo: " + item)
       this.chosenItem = item;
       this.readyToDelete = true;
     },
     async deleteItem() {
-      console.log("HEI " + this.chosenItem);
       await UserService.setListingToDeleted(this.chosenItem);
       this.$router.go(0);
     },