diff --git a/src/pages/home/HeaderView.tsx b/src/pages/home/HeaderView.tsx index 491d46a2e05..75f67323c4f 100644 --- a/src/pages/home/HeaderView.tsx +++ b/src/pages/home/HeaderView.tsx @@ -173,7 +173,13 @@ function HeaderView({report, parentReportAction, onNavigationMenuButtonClicked, return true; }; - const shouldShowGuideBooking = !!account && !!account?.guideDetails?.calendarLink && isAdminRoom(report) && !!canUserPerformWriteAction(report) && !isChatThread; + const shouldShowGuideBooking = + !!account && + account?.guideDetails?.email !== CONST.EMAIL.CONCIERGE && + !!account?.guideDetails?.calendarLink && + isAdminRoom(report) && + !!canUserPerformWriteAction(report) && + !isChatThread; const join = callFunctionIfActionIsAllowed(() => joinRoom(report));