diff --git a/src/components/MoneyRequestReportView/MoneyRequestReportNavigation.tsx b/src/components/MoneyRequestReportView/MoneyRequestReportNavigation.tsx index c9c44726d3d5..cb832933a240 100644 --- a/src/components/MoneyRequestReportView/MoneyRequestReportNavigation.tsx +++ b/src/components/MoneyRequestReportView/MoneyRequestReportNavigation.tsx @@ -58,7 +58,8 @@ function MoneyRequestReportNavigation({reportID, shouldDisplayNarrowVersion}: Mo const hideNextButton = !lastSearchQuery?.hasMoreResults && currentIndex === allReports.length - 1; const hidePrevButton = currentIndex === 0; const styles = useThemeStyles(); - const shouldDisplayNavigationArrows = allReports && allReports.length > 1 && currentIndex !== -1 && !!lastSearchQuery?.queryJSON; + const isChatSearch = type === CONST.SEARCH.DATA_TYPES.CHAT; + const shouldDisplayNavigationArrows = !isChatSearch && allReports && allReports.length > 1 && currentIndex !== -1 && !!lastSearchQuery?.queryJSON; useEffect(() => { if (!lastSearchQuery?.queryJSON) {