diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index a1a323b575f3..eb4c5d16c634 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -416,12 +416,12 @@ function canShowReportRecipientLocalTime(personalDetails, report) { const reportRecipient = personalDetails[participantsWithoutExpensifyEmails[0]]; const reportRecipientTimezone = lodashGet(reportRecipient, 'timezone', CONST.DEFAULT_TIME_ZONE); const isReportParticipantValidated = lodashGet(reportRecipient, 'validated', false); - return !hasMultipleParticipants + return Boolean(!hasMultipleParticipants && !isChatRoom(report) && reportRecipient && reportRecipientTimezone && reportRecipientTimezone.selected - && isReportParticipantValidated; + && isReportParticipantValidated); } /**