diff --git a/src/pages/home/ReportScreen.js b/src/pages/home/ReportScreen.js index f28e418865ff..da1ad3426c2f 100644 --- a/src/pages/home/ReportScreen.js +++ b/src/pages/home/ReportScreen.js @@ -200,6 +200,8 @@ function ReportScreen({ iouReportID: reportProp.iouReportID, isOwnPolicyExpenseChat: reportProp.isOwnPolicyExpenseChat, notificationPreference: reportProp.notificationPreference, + isPinned: reportProp.isPinned, + chatReportID: reportProp.chatReportID, }), [ reportProp.lastReadTime, @@ -230,6 +232,8 @@ function ReportScreen({ reportProp.iouReportID, reportProp.isOwnPolicyExpenseChat, reportProp.notificationPreference, + reportProp.isPinned, + reportProp.chatReportID, ], ); @@ -658,6 +662,9 @@ export default compose( prevProps.report.isOptimisticReport === nextProps.report.isOptimisticReport && prevProps.report.statusNum === nextProps.report.statusNum && _.isEqual(prevProps.report.pendingFields, nextProps.report.pendingFields) && - prevProps.currentReportID === nextProps.currentReportID, + prevProps.currentReportID === nextProps.currentReportID && + prevProps.report.notificationPreference === nextProps.report.notificationPreference && + prevProps.report.isPinned === nextProps.report.isPinned && + prevProps.report.chatReportID === nextProps.report.chatReportID, ), );