diff --git a/src/pages/following.jsx b/src/pages/following.jsx
index 668bf48f..60beb217 100644
--- a/src/pages/following.jsx
+++ b/src/pages/following.jsx
@@ -30,11 +30,11 @@ function Following({ title, path, id, ...props }) {
         console.log('First load', latestItem.current);
       }
 
-      value = dedupeBoosts(value, instance);
       value = filteredItems(value, 'home');
       value.forEach((item) => {
         saveStatus(item, instance);
       });
+      value = dedupeBoosts(value, instance);
 
       // ENFORCE sort by datetime (Latest first)
       value.sort((a, b) => {