diff --git a/src/components/SelectionListWithSections/Search/TransactionGroupListExpanded.tsx b/src/components/SelectionListWithSections/Search/TransactionGroupListExpanded.tsx index 38bdde4bd2a3..42379460d5b4 100644 --- a/src/components/SelectionListWithSections/Search/TransactionGroupListExpanded.tsx +++ b/src/components/SelectionListWithSections/Search/TransactionGroupListExpanded.tsx @@ -208,7 +208,7 @@ function TransactionGroupListExpanded({ onButtonPress={() => { openReportInRHP(transaction); }} - style={[styles.noBorderRadius, !isLargeScreenWidth ? [styles.p3, styles.pt3] : [styles.pl3, styles.pv1Half], styles.flex1]} + style={[styles.noBorderRadius, styles.p3, isLargeScreenWidth && [styles.pv1Half], styles.flex1]} isReportItemChild isInSingleTransactionReport={isInSingleTransactionReport} areAllOptionalColumnsHidden={areAllOptionalColumnsHidden} diff --git a/src/components/SelectionListWithSections/Search/TransactionListItem.tsx b/src/components/SelectionListWithSections/Search/TransactionListItem.tsx index 756e0357c8d4..5ff07ffcf20f 100644 --- a/src/components/SelectionListWithSections/Search/TransactionListItem.tsx +++ b/src/components/SelectionListWithSections/Search/TransactionListItem.tsx @@ -186,7 +186,7 @@ function TransactionListItem({ amountColumnSize={amountColumnSize} taxAmountColumnSize={taxAmountColumnSize} shouldShowCheckbox={!!canSelectMultiple} - style={[styles.p3, styles.pv2, shouldUseNarrowLayout ? styles.pt2 : {}, isLargeScreenWidth && styles.pr0]} + style={[styles.p3, styles.pv2, shouldUseNarrowLayout ? styles.pt2 : {}]} areAllOptionalColumnsHidden={areAllOptionalColumnsHidden} violations={transactionViolations} onArrowRightPress={onPress}