diff --git a/packages/component-faraday-selectors/src/index.js b/packages/component-faraday-selectors/src/index.js index 0b5a4b1ce1c93236758868aa3dbbfeb392647192..befba20e17db130dae1feb571429cbcb78248b93 100644 --- a/packages/component-faraday-selectors/src/index.js +++ b/packages/component-faraday-selectors/src/index.js @@ -1,4 +1,4 @@ -import { get, has, last, chain, isEmpty } from 'lodash' +import { get, has, last, chain } from 'lodash' import { selectCurrentUser } from 'xpub-selectors' export const isHEToManuscript = (state, collectionId) => { @@ -118,8 +118,8 @@ export const canReviewerViewEditorialComments = ( fragment = {}, ) => { const isReviewer = currentUserIsReviewer(state, fragment.id) - const hasRevision = !isEmpty(get(fragment, 'revision', {})) - const hasRecommendation = !isEmpty(get(fragment, 'recommendations', [])) + const hasRevision = get(fragment, 'revision', false) + const hasRecommendation = get(fragment, 'recommendations', false) const status = get(collection, 'status', 'draft') return ( isReviewer &&