diff --git a/src/components/SelectionList/Search/ReportListItemHeader.tsx b/src/components/SelectionList/Search/ReportListItemHeader.tsx index ab08ba05a272..c1a5eb9da5b0 100644 --- a/src/components/SelectionList/Search/ReportListItemHeader.tsx +++ b/src/components/SelectionList/Search/ReportListItemHeader.tsx @@ -127,7 +127,7 @@ function FirstHeaderRow({ /> - + ({ const reportItem = item as unknown as ReportListItemType; const {currentSearchHash} = useSearchContext(); const {translate} = useLocalize(); - const {shouldUseNarrowLayout} = useResponsiveLayout(); + const {isLargeScreenWidth} = useResponsiveLayout(); const thereIsFromAndTo = !!reportItem?.from && !!reportItem?.to; const showArrowComponent = reportItem.type === CONST.REPORT.TYPE.IOU && thereIsFromAndTo; const handleOnButtonPress = () => { handleActionButtonPress(currentSearchHash, reportItem, () => onSelectRow(item)); }; - return shouldUseNarrowLayout ? ( + return !isLargeScreenWidth ? (