diff --git a/src/pages/iou/request/step/IOURequestStepConfirmation.tsx b/src/pages/iou/request/step/IOURequestStepConfirmation.tsx index f9e68ded757..c750200a2dc 100644 --- a/src/pages/iou/request/step/IOURequestStepConfirmation.tsx +++ b/src/pages/iou/request/step/IOURequestStepConfirmation.tsx @@ -349,10 +349,10 @@ function IOURequestStepConfirmation({ } startMoneyRequest( - CONST.IOU.TYPE.CREATE, - // When starting to create an expense from the global FAB, there is not an existing report yet. A random optimistic reportID is generated and used + iouType ?? CONST.IOU.TYPE.CREATE, + // When starting to create an expense from the global FAB, If there is not an existing report yet, a random optimistic reportID is generated and used // for all of the routes in the creation flow. - generateReportID(), + reportID ?? generateReportID(), ); // eslint-disable-next-line react-compiler/react-compiler, react-hooks/exhaustive-deps -- we don't want this effect to run again }, [isLoadingTransaction]);