From 0480fbe898b2c8a21b34409dbede85911ca031b4 Mon Sep 17 00:00:00 2001 From: Eskalifer1 Date: Tue, 9 Dec 2025 20:26:42 +0200 Subject: [PATCH] fix:77141: follow-up: use the same approach for right arrow in TransactionItemRow --- .../Search/TransactionGroupListExpanded.tsx | 2 +- .../SelectionListWithSections/Search/TransactionListItem.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}