diff --git a/src/components/ReportActionItem/MoneyRequestPreview.js b/src/components/ReportActionItem/MoneyRequestPreview.js index 54eee7a8cc13..36b3efa2533b 100644 --- a/src/components/ReportActionItem/MoneyRequestPreview.js +++ b/src/components/ReportActionItem/MoneyRequestPreview.js @@ -151,8 +151,9 @@ function MoneyRequestPreview(props) { const participantAccountIDs = props.isBillSplit ? lodashGet(props.action, 'originalMessage.participantAccountIDs', []) : [managerID, ownerAccountID]; const participantAvatars = OptionsListUtils.getAvatarsForAccountIDs(participantAccountIDs, props.personalDetails); + const sortedParticipantAvatars = _.sortBy(participantAvatars, (avatar) => avatar.id); if (isPolicyExpenseChat && props.isBillSplit) { - participantAvatars.push(ReportUtils.getWorkspaceIcon(props.chatReport)); + sortedParticipantAvatars.push(ReportUtils.getWorkspaceIcon(props.chatReport)); } // Pay button should only be visible to the manager of the report. @@ -298,7 +299,8 @@ function MoneyRequestPreview(props) {