Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/MultipleAvatars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down