diff --git a/src/components/LHNOptionsList/LHNOptionsList.tsx b/src/components/LHNOptionsList/LHNOptionsList.tsx index 57682109a7c2b..dafe2c1a26da0 100644 --- a/src/components/LHNOptionsList/LHNOptionsList.tsx +++ b/src/components/LHNOptionsList/LHNOptionsList.tsx @@ -238,7 +238,6 @@ function LHNOptionsList({style, contentContainerStyles, data, onSelectRow, optio personalDetails={personalDetails ?? {}} transaction={itemTransaction} lastReportActionTransaction={lastReportActionTransaction} - receiptTransactions={transactions} viewMode={optionMode} isOptionFocused={!shouldDisableFocusOptions} lastMessageTextFromReport={lastMessageTextFromReport} diff --git a/src/components/LHNOptionsList/OptionRowLHNData.tsx b/src/components/LHNOptionsList/OptionRowLHNData.tsx index 90572fb323615..4ee59ea96247d 100644 --- a/src/components/LHNOptionsList/OptionRowLHNData.tsx +++ b/src/components/LHNOptionsList/OptionRowLHNData.tsx @@ -34,7 +34,6 @@ function OptionRowLHNData({ preferredLocale = CONST.LOCALES.DEFAULT, policy, invoiceReceiverPolicy, - receiptTransactions, parentReportAction, iouReportReportActions, transaction, @@ -128,7 +127,6 @@ function OptionRowLHNData({ conciergeReportID, iouReportReportActions, transaction, - receiptTransactions, invoiceReceiverPolicy, lastMessageTextFromReport, card, diff --git a/src/components/LHNOptionsList/types.ts b/src/components/LHNOptionsList/types.ts index 41a3d5dd6f4e5..7172ffc25da46 100644 --- a/src/components/LHNOptionsList/types.ts +++ b/src/components/LHNOptionsList/types.ts @@ -99,9 +99,6 @@ type OptionRowLHNDataProps = { /** Whether a report contains a draft */ hasDraftComment: boolean; - /** The receipt transaction from the parent report action */ - receiptTransactions: OnyxCollection; - /** The reportID of the report */ reportID: string;