From 06c0425facbe06ce08443c122acb0345df1e4ab1 Mon Sep 17 00:00:00 2001 From: Carlos Martins Date: Mon, 16 Sep 2024 14:41:46 +0900 Subject: [PATCH] open expense report on single transaction report --- src/components/SelectionList/Search/ReportListItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SelectionList/Search/ReportListItem.tsx b/src/components/SelectionList/Search/ReportListItem.tsx index 88fbb1f45314..a0b96547bcd8 100644 --- a/src/components/SelectionList/Search/ReportListItem.tsx +++ b/src/components/SelectionList/Search/ReportListItem.tsx @@ -110,7 +110,7 @@ function ReportListItem({ isDisabled={isDisabled} canSelectMultiple={canSelectMultiple} onCheckboxPress={() => onCheckboxPress?.(transactionItem as unknown as TItem)} - onSelectRow={() => openReportInRHP(transactionItem)} + onSelectRow={onSelectRow} onDismissError={onDismissError} onFocus={onFocus} onLongPressRow={onLongPressRow}