Skip to content

Commit

Permalink
Merge pull request Expensify#35624 from dukenv0307/fix/35579/room-tap…
Browse files Browse the repository at this point in the history
…ping-o-leave-room-issue
  • Loading branch information
francoisl authored Feb 2, 2024
2 parents d9fd412 + 7c4453d commit 04f92ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pages/home/ReportScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ function ReportScreen({
notificationPreference: reportProp.notificationPreference,
isPinned: reportProp.isPinned,
chatReportID: reportProp.chatReportID,
visibility: reportProp.visibility,
}),
[
reportProp.lastReadTime,
Expand Down Expand Up @@ -234,6 +235,7 @@ function ReportScreen({
reportProp.notificationPreference,
reportProp.isPinned,
reportProp.chatReportID,
reportProp.visibility,
],
);

Expand Down Expand Up @@ -667,6 +669,7 @@ export default compose(
prevProps.report.notificationPreference === nextProps.report.notificationPreference &&
prevProps.report.isPinned === nextProps.report.isPinned &&
prevProps.report.chatReportID === nextProps.report.chatReportID &&
prevProps.report.visibility === nextProps.report.visibility &&
prevProps.viewportOffsetTop === nextProps.viewportOffsetTop,
),
);

0 comments on commit 04f92ed

Please sign in to comment.