diff --git a/aleksis/core/assets/components/LegacyBaseTemplate.vue b/aleksis/core/assets/components/LegacyBaseTemplate.vue
index b1dc8e215de0afc9238cce8df57dc17daa3cda37..9c993248dbce954848699e38b8a5ef786dcfab79 100644
--- a/aleksis/core/assets/components/LegacyBaseTemplate.vue
+++ b/aleksis/core/assets/components/LegacyBaseTemplate.vue
@@ -73,19 +73,12 @@ export default {
       this.$root.$setPageTitle(title);
     },
   },
-  watch: {
-    $route() {
-      // Show loading animation once route changes
-      this.$root.contentLoading = true;
-    },
-  },
   mounted() {
     // Subscribe to message channel to receive height from iframe
     window.addEventListener("message", this.receiveMessage);
   },
   beforeDestroy() {
     window.removeEventListener("message", this.receiveMessage);
-    this.$root.contentLoading = false;
   },
   name: "LegacyBaseTemplate",
 };