diff --git a/src/lib/components/channel/Messages/Message/ReactionPicker.svelte b/src/lib/components/channel/Messages/Message/ReactionPicker.svelte index 2453b2dbf..575b2a83d 100644 --- a/src/lib/components/channel/Messages/Message/ReactionPicker.svelte +++ b/src/lib/components/channel/Messages/Message/ReactionPicker.svelte @@ -61,13 +61,13 @@ ); } }); - // Group emojis into rows of 6 + // Group emojis into rows of 8 emojiRows = []; let currentRow = []; flattenedEmojis.forEach((item) => { if (item.type === 'emoji') { currentRow.push(item); - if (currentRow.length === 7) { + if (currentRow.length === 8) { emojiRows.push(currentRow); currentRow = []; } @@ -126,7 +126,7 @@ {#if emojiRows.length === 0}