Compare commits

...

1 Commits

Author SHA1 Message Date
Jiang Bohan
e24e65506c fix(ui): replace smiley with check mark in quick emoji list
Swap the 4th quick reply emoji 😄 for  so approval-style
acknowledgements are one tap away.
2026-04-21 17:26:27 +08:00

View File

@@ -8,7 +8,7 @@ const EmojiPicker = lazy(() =>
import("./emoji-picker").then((m) => ({ default: m.EmojiPicker })),
);
const QUICK_EMOJIS = ["👍", "👌", "❤️", "😄", "🎉", "😕", "🚀", "👀"];
const QUICK_EMOJIS = ["👍", "👌", "❤️", "", "🎉", "😕", "🚀", "👀"];
interface QuickEmojiPickerProps {
onSelect: (emoji: string) => void;