diff --git a/packages/component-faraday-selectors/src/index.js b/packages/component-faraday-selectors/src/index.js
index 8ad118184572d279c3317425e1cd4ad2d0f6dda3..e852fc3b043265b83ce87eabfd80fbd263b22a87 100644
--- a/packages/component-faraday-selectors/src/index.js
+++ b/packages/component-faraday-selectors/src/index.js
@@ -36,7 +36,7 @@ export const canInviteReviewers = (state, collection) => {
     return false
 
   const user = selectCurrentUser(state)
-  const isStaff = currentUserIs(state, 'adminEiC')
+  const isStaff = currentUserIs(state, 'isAdmin')
   const { isAccepted, id: heId } = get(collection, 'handlingEditor', {})
 
   return isAccepted && (user.id === heId || isStaff)