diff --git a/aleksis/core/frontend/components/calendar/Calendar.vue b/aleksis/core/frontend/components/calendar/Calendar.vue
index 5fa58e45a90ae52a6dcd87e3db0e76f00359b028..3eacb598c350a43a68fe1b247664c78fb96e68cd 100644
--- a/aleksis/core/frontend/components/calendar/Calendar.vue
+++ b/aleksis/core/frontend/components/calendar/Calendar.vue
@@ -117,7 +117,6 @@ export default {
           cf.events.map((event) => {
             const start = this.$parseISODate(event.start);
             const end = this.$parseISODate(event.end);
-            console.log(event.start, start, start.toJSDate());
             return {
               ...event,
               category: cf.verboseName,
@@ -273,7 +272,6 @@ export default {
       nativeEvent.stopPropagation();
     },
     detailComponentForFeed(feedName) {
-      console.log(this.calendar, feedName, calendarFeedDetailComponents);
       if (
         this.calendar.calendarFeeds &&
         feedName &&
diff --git a/aleksis/core/frontend/plugins/aleksis.js b/aleksis/core/frontend/plugins/aleksis.js
index f27938e7b45b1fe4b1f3574a03ce190808969153..adc9036e70f7faefaa3ce4649a608ef7aeaf06f9 100644
--- a/aleksis/core/frontend/plugins/aleksis.js
+++ b/aleksis/core/frontend/plugins/aleksis.js
@@ -222,7 +222,6 @@ AleksisVue.install = function (Vue) {
   };
 
   Vue.prototype.$d = function (value, ...args) {
-    console.log("I AM $D", value, typeof value);
     if (typeof value === DateTime) {
       value = value.toJSDate();
     }