diff --git a/app/javascript/mastodon/components/status.js b/app/javascript/mastodon/components/status.js
index e77d1eb910c0b347ee00f095d1aaef860275096d..325aceb5b32bed84df6ccf50ad20cb118524be67 100644
--- a/app/javascript/mastodon/components/status.js
+++ b/app/javascript/mastodon/components/status.js
@@ -91,14 +91,6 @@ class Status extends ImmutablePureComponent {
   }
 
   componentWillUnmount () {
-    if (!this.props.intersectionObserverWrapper) {
-      // TODO: enable IntersectionObserver optimization for notification statuses.
-      // These are managed in notifications/index.js rather than status_list.js
-      return;
-    }
-
-    this.props.intersectionObserverWrapper.unobserve(this.props.id, this.node);
-
     this.componentMounted = false;
   }
 
diff --git a/app/javascript/mastodon/features/ui/util/intersection_observer_wrapper.js b/app/javascript/mastodon/features/ui/util/intersection_observer_wrapper.js
index b15f8b9ef55649051bcc2fa579b66e9d746831c9..0e959f9ae8e9f4955d090c38ce8e3ef2f9c6c41d 100644
--- a/app/javascript/mastodon/features/ui/util/intersection_observer_wrapper.js
+++ b/app/javascript/mastodon/features/ui/util/intersection_observer_wrapper.js
@@ -37,13 +37,6 @@ class IntersectionObserverWrapper {
     }
   }
 
-  unobserve (id, node) {
-    if (this.observer) {
-      delete this.callbacks[id];
-      this.observer.unobserve(node);
-    }
-  }
-
   disconnect () {
     if (this.observer) {
       this.observer.disconnect();