diff --git a/lib/reducers/master-reducer.js b/lib/reducers/master-reducer.js
--- a/lib/reducers/master-reducer.js
+++ b/lib/reducers/master-reducer.js
@@ -54,8 +54,16 @@
     reduceThreadInfos(state.threadStore, action);
   const { threadInfos } = threadStore;
 
-  const { entryStore, reportCreationRequests: newEntryInconsistencies } =
-    reduceEntryInfos(state.entryStore, action, threadInfos, onStateDifference);
+  const {
+    entryStore,
+    reportCreationRequests: newEntryInconsistencies,
+    entryStoreOperations,
+  } = reduceEntryInfos(
+    state.entryStore,
+    action,
+    threadInfos,
+    onStateDifference,
+  );
 
   const onStateDifferenceForStaff = (message: string) => {
     const isCurrentUserStaff = state.currentUserInfo?.id
@@ -225,6 +233,7 @@
       syncedMetadataStoreOperations,
       auxUserStoreOperations,
       threadActivityStoreOperations,
+      entryStoreOperations,
     },
   };
 }