diff --git a/packages/component-manuscript/src/components/ManuscriptLayout.js b/packages/component-manuscript/src/components/ManuscriptLayout.js
index c5ffbe1a4ef289f530893ca9ada6704c48e4fb40..81d2be237da6cecd3d7c9611c311455b1e6d31b5 100644
--- a/packages/component-manuscript/src/components/ManuscriptLayout.js
+++ b/packages/component-manuscript/src/components/ManuscriptLayout.js
@@ -62,7 +62,7 @@ const ManuscriptLayout = ({
   toggleEditorialComments,
   submitRevision,
   inviteReviewer,
-  recommendationHandle,
+  recommendationHandler,
   inviteHandlingEditor,
 }) => (
   <Root pb={30}>
@@ -203,7 +203,7 @@ const ManuscriptLayout = ({
               highlight={reviewerRecommendations.length > 0}
               modalKey="heRecommendation"
               onRecommendationSubmit={
-                recommendationHandle.onEditorialRecommendation
+                recommendationHandler.onEditorialRecommendation
               }
             />
           )}
@@ -215,7 +215,7 @@ const ManuscriptLayout = ({
             highlight={editorialRecommendations.length > 0}
             messagesLabel={messagesLabel}
             mt={2}
-            submitDecision={recommendationHandle.createRecommendation}
+            submitDecision={recommendationHandler.createRecommendation}
           />
         )}
       </Fragment>
diff --git a/packages/component-manuscript/src/components/ManuscriptPage.js b/packages/component-manuscript/src/components/ManuscriptPage.js
index 5314980bc401ad0016fe46fdb3275716f7e878fb..b5cf99de5920698973d35e857737db2e6cb0432c 100644
--- a/packages/component-manuscript/src/components/ManuscriptPage.js
+++ b/packages/component-manuscript/src/components/ManuscriptPage.js
@@ -56,9 +56,9 @@ import {
   getInvitationsWithReviewersForFragment,
 } from 'pubsweet-component-faraday-selectors'
 import {
-  RemoteOpener,
   handleError,
   withFetching,
+  RemoteOpener,
 } from 'pubsweet-component-faraday-ui'
 
 import ManuscriptLayout from './ManuscriptLayout'
@@ -66,11 +66,13 @@ import withInviteReviewer from '../inviteReviewer/withInviteReviewer'
 import withSubmitRevision from '../submitRevision/withSubmitRevision'
 import withHandleRecommendation from '../handleRecommendation/withHandleRecommendation'
 import withInviteHandlingEditor from '../inviteHandlingEditor/withInviteHandlingEditor'
+
 import {
-  parseSearchParams,
   redirectToError,
+  parseSearchParams,
   getPublonsReviewers,
 } from './utils'
+
 import {
   canAssignHE,
   selectFetching,