From 36aed980f6fe037596ab5ee32d71ce4264845e7d Mon Sep 17 00:00:00 2001 From: "Situ Chandra Shil (via MelvinBot)" Date: Thu, 5 Mar 2026 19:51:18 +0000 Subject: [PATCH] Pass action parameter to participants route in navigateToParticipantPage When tapping the To field on the confirmation page during a Submit it to someone flow for track distance expenses, the action parameter was not being forwarded to the participants route. This caused it to default to create, which incorrectly included self DM in the participant list. Co-authored-by: Situ Chandra Shil --- src/components/MoneyRequestConfirmationList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MoneyRequestConfirmationList.tsx b/src/components/MoneyRequestConfirmationList.tsx index e9a69180af09..e63877660277 100644 --- a/src/components/MoneyRequestConfirmationList.tsx +++ b/src/components/MoneyRequestConfirmationList.tsx @@ -975,7 +975,7 @@ function MoneyRequestConfirmationList({ } const newIOUType = iouType === CONST.IOU.TYPE.SUBMIT || iouType === CONST.IOU.TYPE.TRACK ? CONST.IOU.TYPE.CREATE : iouType; - Navigation.navigate(ROUTES.MONEY_REQUEST_STEP_PARTICIPANTS.getRoute(newIOUType, transactionID, transaction.reportID, Navigation.getActiveRoute())); + Navigation.navigate(ROUTES.MONEY_REQUEST_STEP_PARTICIPANTS.getRoute(newIOUType, transactionID, transaction.reportID, Navigation.getActiveRoute(), action)); }; /**