fix: reduce quick reaction emoji count from 5 to 3 (toolbar too wide)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-05 00:22:09 -04:00
parent d1de438f67
commit 8866da0a82
+1 -1
View File
@@ -153,7 +153,7 @@ type MessageQuickReactionsProps = {
export const MessageQuickReactions = as<'div', MessageQuickReactionsProps>(
({ onReaction, ...props }, ref) => {
const mx = useMatrixClient();
const recentEmojis = useRecentEmoji(mx, 5);
const recentEmojis = useRecentEmoji(mx, 3);
if (recentEmojis.length === 0) return <span />;
return (