Skip to content

Commit

Permalink
fix: Green dot for money request is still displayed in spite of havin…
Browse files Browse the repository at this point in the history
…g deleted the workspace
  • Loading branch information
tienifr committed Nov 3, 2023
1 parent d53a03e commit 2fec62f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/libs/ReportUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -1414,6 +1414,10 @@ function requiresAttentionFromCurrentUser(option, parentReportAction = {}) {
return false;
}

if (isArchivedRoom(option)) {
return false;
}

if (isArchivedRoom(getReport(option.parentReportID))) {
return false;
}
Expand Down

0 comments on commit 2fec62f

Please sign in to comment.