diff --git a/src/components/SelectionList/Search/ReportListItem.tsx b/src/components/SelectionList/Search/ReportListItem.tsx index 10e25f3d871c..b463cabbe960 100644 --- a/src/components/SelectionList/Search/ReportListItem.tsx +++ b/src/components/SelectionList/Search/ReportListItem.tsx @@ -79,6 +79,10 @@ function ReportListItem({ const {isLargeScreenWidth} = useWindowDimensions(); const StyleUtils = useStyleUtils(); + if (reportItem.transactions.length === 0) { + return; + } + const listItemPressableStyle = [styles.selectionListPressableItemWrapper, styles.pv3, item.isSelected && styles.activeComponentBG, isFocused && styles.sidebarLinkActive]; const handleOnButtonPress = () => {