diff --git a/src/components/MultipleAvatars.tsx b/src/components/MultipleAvatars.tsx index e867de7ddb97..febe18f30c7d 100644 --- a/src/components/MultipleAvatars.tsx +++ b/src/components/MultipleAvatars.tsx @@ -119,8 +119,8 @@ function MultipleAvatars({ const rowSize = Math.min(Math.ceil(icons.length / 2), maxAvatarsInRow); // Slice the icons array into two rows - const firstRow = icons.slice(rowSize); - const secondRow = icons.slice(0, rowSize); + const firstRow = icons.slice(0, rowSize); + const secondRow = icons.slice(rowSize); // Update the state with the two rows as an array return [firstRow, secondRow];