File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ function HeaderView(props) {
88
88
const isCanceledTaskReport = ReportUtils . isCanceledTaskReport ( props . report , parentReportAction ) ;
89
89
const lastVisibleMessage = ReportActionsUtils . getLastVisibleMessage ( props . report . reportID ) ;
90
90
const isEmptyChat = ! props . report . lastMessageText && ! props . report . lastMessageTranslationKey && ! lastVisibleMessage . lastMessageText && ! lastVisibleMessage . lastMessageTranslationKey ;
91
+ const isArchivedRoom = ReportUtils . isArchivedRoom ( props . report ) ;
91
92
92
93
// We hide the button when we are chatting with an automated Expensify account since it's not possible to contact
93
94
// these users via alternative means. It is possible to request a call with Concierge so we leave the option for them.
@@ -159,7 +160,7 @@ function HeaderView(props) {
159
160
Link . openExternalLink ( props . guideCalendarLink ) ;
160
161
} ,
161
162
} ) ;
162
- } else if ( ! isAutomatedExpensifyAccount && ! isTaskReport ) {
163
+ } else if ( ! isAutomatedExpensifyAccount && ! isTaskReport && ! isArchivedRoom ) {
163
164
threeDotMenuItems . push ( {
164
165
icon : ZoomIcon ,
165
166
iconFill : themeColors . icon ,
You can’t perform that action at this time.
0 commit comments