diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue
index 96047ab9848621c55fe5b75971bfca47e6c9ba62..45487b6fbe7d1d26643bd12d7fc6e5f8e69c84ff 100644
--- a/front/src/components/Sidebar.vue
+++ b/front/src/components/Sidebar.vue
@@ -159,7 +159,6 @@ export default {
       // for half the height of the containers display area
       var scrollBack = (container.scrollHeight - container.scrollTop <= container.clientHeight) ? 0 : container.clientHeight / 2
       container.scrollTop = container.scrollTop - scrollBack
-      console.log(container.scrollHeight - container.scrollTop, container.clientHeight)
     }
   },
   watch: {
diff --git a/front/src/main.js b/front/src/main.js
index 0c41294113929d4421a6ee36808be445de7ada5d..e7907d536c96928677af820db547b6c1b2d9b07d 100644
--- a/front/src/main.js
+++ b/front/src/main.js
@@ -35,7 +35,7 @@ Vue.use(VueMasonryPlugin)
 Vue.use(VueLazyload)
 Vue.config.productionTip = false
 Vue.directive('title', {
-  inserted: (el, binding) => { console.log(binding.value); document.title = binding.value + ' - Funkwhale' },
+  inserted: (el, binding) => { document.title = binding.value + ' - Funkwhale' },
   updated: (el, binding) => { document.title = binding.value + ' - Funkwhale' }
 })
 
diff --git a/front/src/views/radios/Detail.vue b/front/src/views/radios/Detail.vue
index 397dcb49ec3fbd7e05fa45007f38418712a2d3b7..b3b500cf619d8b1809014609d9c77a94d5a0b6e3 100644
--- a/front/src/views/radios/Detail.vue
+++ b/front/src/views/radios/Detail.vue
@@ -83,7 +83,6 @@ export default {
       axios.get(url).then((response) => {
         self.radio = response.data
         axios.get(url + 'tracks', {params: {page: this.page}}).then((response) => {
-          console.log(response.data.count)
           this.totalTracks = response.data.count
           this.tracks = response.data.results
         }).then(() => {