diff --git a/src/libs/ReportActionsUtils.js b/src/libs/ReportActionsUtils.js index e3ddff17c69a..21969e4d67e5 100644 --- a/src/libs/ReportActionsUtils.js +++ b/src/libs/ReportActionsUtils.js @@ -248,6 +248,11 @@ function isConsecutiveActionMadeByPreviousActor(reportActions, actionIndex) { return false; } + // Do not group if the delegate account ID is different + if (previousAction.delegateAccountID !== currentAction.delegateAccountID) { + return false; + } + return currentAction.actorEmail === previousAction.actorEmail; }