From 5dc2350daac59adba3953dc6ac8f094ca5c6c490 Mon Sep 17 00:00:00 2001 From: Anusha Date: Tue, 30 Apr 2024 15:31:21 +0500 Subject: [PATCH] fix tooltip for single participants group --- src/pages/home/HeaderView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/home/HeaderView.tsx b/src/pages/home/HeaderView.tsx index 4295f1f0c46a..935572a1e7dd 100644 --- a/src/pages/home/HeaderView.tsx +++ b/src/pages/home/HeaderView.tsx @@ -216,7 +216,7 @@ function HeaderView({ const brickRoadIndicator = ReportUtils.hasReportNameError(report) ? CONST.BRICK_ROAD_INDICATOR_STATUS.ERROR : ''; const shouldShowBorderBottom = !isTaskReport || !shouldUseNarrowLayout; const shouldDisableDetailPage = ReportUtils.shouldDisableDetailPage(report); - const shouldUseGroupTitle = isGroupChat && !!report?.reportName; + const shouldUseGroupTitle = isGroupChat && (!!report?.reportName || !isMultipleParticipant); const isLoading = !report.reportID || !title; return (