diff --git a/src/pages/home/report/ReportActionCompose.js b/src/pages/home/report/ReportActionCompose.js index f67ea162dafd..f3eca50cf174 100755 --- a/src/pages/home/report/ReportActionCompose.js +++ b/src/pages/home/report/ReportActionCompose.js @@ -424,11 +424,13 @@ class ReportActionCompose extends React.Component { // eslint-disable-next-line no-unused-vars const reportParticipants = lodashGet(this.props.report, 'participants', []); const hasMultipleParticipants = reportParticipants.length > 1; + const hasChronosParticipant = _.contains(reportParticipants, CONST.EMAIL.CHRONOS); const hasConciergeParticipant = _.contains(reportParticipants, CONST.EMAIL.CONCIERGE); const reportRecipient = this.props.personalDetails[reportParticipants[0]]; const currentUserTimezone = lodashGet(this.props.myPersonalDetails, 'timezone', {}); const reportRecipientTimezone = lodashGet(reportRecipient, 'timezone', {}); const shouldShowReportRecipientLocalTime = !hasConciergeParticipant + && !hasChronosParticipant && !hasMultipleParticipants && reportRecipient && reportRecipientTimezone