diff --git a/src/pages/home/HeaderView.js b/src/pages/home/HeaderView.js
index 2a98a50552be..e0f6ed71d8f5 100644
--- a/src/pages/home/HeaderView.js
+++ b/src/pages/home/HeaderView.js
@@ -217,7 +217,7 @@ function HeaderView(props) {
const shouldShowBorderBottom = !isTaskReport || !isSmallScreenWidth;
const shouldDisableDetailPage = ReportUtils.shouldDisableDetailPage(props.report);
- const isLoading = !props.report || !title;
+ const isLoading = !props.report || !props.report.reportID || !title;
return (
- {canJoin && isSmallScreenWidth && {joinButton}}
+ {!isLoading && canJoin && isSmallScreenWidth && {joinButton}}
);
}