diff --git a/src/components/ItemComponents/NewItemForm.vue b/src/components/ItemComponents/NewItemForm.vue
index 6e4a78c7fa8148a9cafa702638e132bc31e990d9..e49e41ca6b80fe3a1cfe85fd341509715ae0fda3 100644
--- a/src/components/ItemComponents/NewItemForm.vue
+++ b/src/components/ItemComponents/NewItemForm.vue
@@ -373,7 +373,7 @@ export default {
       fileReader.onloadend = async function () {
         const res = fileReader.result;
         const id = await postNewImageCommunity(res);
-        console.log(id);
+        
         const API_URL = process.env.VUE_APP_BASEURL;
         that.item.imagesToSend.push(API_URL + "images/" + id);
         that.item.images.push(API_URL + "images/" + id)
diff --git a/src/components/UserProfileComponents/UserItems.vue b/src/components/UserProfileComponents/UserItems.vue
index 3db53b0b66d6cd55ccca542fbdddb8fc768d1cff..82070bfe59ee0234738fd70bf478fb1013f72c72 100644
--- a/src/components/UserProfileComponents/UserItems.vue
+++ b/src/components/UserProfileComponents/UserItems.vue
@@ -289,7 +289,6 @@ export default {
   async beforeMount() {
     await this.getUserListingsFromAPI();
     this.updateVisibleTodos();
-    console.log("hei");
   },
 };
 </script>