From e5315db92c38f7001126aa4ab84c2ea54929807b Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Sat, 24 Jun 2023 19:23:14 -0700 Subject: [PATCH] fix: :adhesive_bandage: ask for reload upon changing skin tone --- packages/client/src/pages/settings/reaction.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/client/src/pages/settings/reaction.vue b/packages/client/src/pages/settings/reaction.vue index 8d8bca8930..65abaaa765 100644 --- a/packages/client/src/pages/settings/reaction.vue +++ b/packages/client/src/pages/settings/reaction.vue @@ -238,6 +238,10 @@ watch(enableEmojiReactions, async () => { await reloadAsk(); }); +watch(reactionPickerSkinTone, async () => { + await reloadAsk(); +}) + const headerActions = $computed(() => []); const headerTabs = $computed(() => []);