@@ -159,9 +159,6 @@ type PureReportActionItemProps = {
159159 /** Whether the provided report is a closed expense report with no expenses */
160160 isClosedExpenseReportWithNoExpenses ?: boolean ;
161161
162- /** User payment card ID */
163- userBillingFundID ?: number ;
164-
165162 /** Whether to show border for MoneyRequestReportPreviewContent */
166163 shouldShowBorder ?: boolean ;
167164
@@ -202,7 +199,6 @@ function PureReportActionItem({
202199 originalReport,
203200 isArchivedRoom,
204201 isClosedExpenseReportWithNoExpenses,
205- userBillingFundID,
206202 shouldShowBorder,
207203 shouldHighlight = false ,
208204 isTryNewDotNVPDismissed = false ,
@@ -627,7 +623,6 @@ function PureReportActionItem({
627623 isTryNewDotNVPDismissed = { isTryNewDotNVPDismissed }
628624 shouldShowBorder = { shouldShowBorder }
629625 isOnSearch = { isOnSearch }
630- userBillingFundID = { userBillingFundID }
631626 index = { index }
632627 setIsPaymentMethodPopoverActive = { setIsPaymentMethodPopoverActive }
633628 />
@@ -715,7 +710,6 @@ export default memo(PureReportActionItem, (prevProps, nextProps) => {
715710 deepEqual ( prevProps . originalReport ?. participants , nextProps . originalReport ?. participants ) &&
716711 prevProps . isArchivedRoom === nextProps . isArchivedRoom &&
717712 prevProps . isClosedExpenseReportWithNoExpenses === nextProps . isClosedExpenseReportWithNoExpenses &&
718- prevProps . userBillingFundID === nextProps . userBillingFundID &&
719713 prevProps . shouldHighlight === nextProps . shouldHighlight &&
720714 prevProps . reportNameValuePairsOrigin === nextProps . reportNameValuePairsOrigin &&
721715 prevProps . reportNameValuePairsOriginalID === nextProps . reportNameValuePairsOriginalID
0 commit comments