diff --git a/packages/component-manuscript/src/components/utils.js b/packages/component-manuscript/src/components/utils.js
index 4a3a4edef0f9f15156c27517ca4c0577ffd6b608..031879a3af200d911cfa905707d35b3406b41395 100644
--- a/packages/component-manuscript/src/components/utils.js
+++ b/packages/component-manuscript/src/components/utils.js
@@ -210,6 +210,7 @@ export const onReviewSubmit = (
         collectionId: project.id,
         recommendation: newValues,
       })
+        .then(() => dispatch(actions.getCollection({ id: project.id })))
         .then(() => {
           dispatch(actions.getFragments({ id: project.id }))
           hideModal()
@@ -275,7 +276,6 @@ export const onRevisionSubmit = (
     onCancel: hideModal,
   })
 }
-
 // revision validators
 export const requiredHTML = value => {
   if (value && value.replace('<p></p>', '').replace('<h1></h1>', '')) {