about summary refs log tree commit diff
path: root/src/components/dms/EmojiReactionPicker.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-04-02 01:45:29 +0300
committerGitHub <noreply@github.com>2025-04-01 15:45:29 -0700
commit5cb49314d009e02179eec3bfc759376d134e2673 (patch)
treee61fe05d9d512577c448fc31989ef5ed6cfb6bd3 /src/components/dms/EmojiReactionPicker.tsx
parent318b29d3fd7d22895ed6ba9a8daff6f296d7dd58 (diff)
downloadvoidsky-5cb49314d009e02179eec3bfc759376d134e2673.tar.zst
[Reactions] Get reactions in chat list working again with new lexicon (#8093)
* get chat list reactions working again with new lexicon

* fix weird android bug where background wasn't clipped
Diffstat (limited to 'src/components/dms/EmojiReactionPicker.tsx')
-rw-r--r--src/components/dms/EmojiReactionPicker.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/dms/EmojiReactionPicker.tsx b/src/components/dms/EmojiReactionPicker.tsx
index 477f45743..bf68b6e3a 100644
--- a/src/components/dms/EmojiReactionPicker.tsx
+++ b/src/components/dms/EmojiReactionPicker.tsx
@@ -95,9 +95,9 @@ export function EmojiReactionPicker({
                           ? t.palette.negative_100
                           : t.palette.primary_500,
                       }
-                    : alreadyReacted && {
-                        backgroundColor: t.palette.primary_200,
-                      },
+                    : alreadyReacted
+                    ? {backgroundColor: t.palette.primary_200}
+                    : t.atoms.bg,
                   {height: 40, width: 40},
                   a.justify_center,
                   a.align_center,