From c46476ea1043506585820eba4fa97e5be7215cb3 Mon Sep 17 00:00:00 2001 From: panbread <93918332+Panniku@users.noreply.github.com> Date: Mon, 3 Mar 2025 01:18:09 +0400 Subject: [PATCH] fix(whoReacted): fix avatar click (#167) * fix white typing indicators in servers (#166) * Drop DoNotLeak + Extras Co-Authored-By: thororen1234 Co-Authored-By: thororen <78185467+thororen1234@users.noreply.github.com> Co-Authored-By: sadan4 <117494111+sadan4@users.noreply.github.com> Co-Authored-By: ynot01 Co-Authored-By: MrDiamondDog <84212701+MrDiamondDog@users.noreply.github.com> Co-Authored-By: Crxaw <48805031+sitescript@users.noreply.github.com> * Finish Purge For Merge * fix(whoReacted): fix avatar click (#1) * Update index.tsx * Fixes --------- Co-authored-by: thororen1234 Co-authored-by: mochie Co-authored-by: thororen <78185467+thororen1234@users.noreply.github.com> Co-authored-by: sadan4 <117494111+sadan4@users.noreply.github.com> Co-authored-by: ynot01 Co-authored-by: MrDiamondDog <84212701+MrDiamondDog@users.noreply.github.com> Co-authored-by: Crxaw <48805031+sitescript@users.noreply.github.com> --- src/plugins/whoReacted/index.tsx | 42 ++++++++++++-------------------- 1 file changed, 16 insertions(+), 26 deletions(-) diff --git a/src/plugins/whoReacted/index.tsx b/src/plugins/whoReacted/index.tsx index c5e7c5bb..8f1f740c 100644 --- a/src/plugins/whoReacted/index.tsx +++ b/src/plugins/whoReacted/index.tsx @@ -102,7 +102,7 @@ const settings = definePluginSettings({ avatarClick: { description: "Toggle clicking avatars in reactions", type: OptionType.BOOLEAN, - default: false, + default: true, restartNeeded: true } }); @@ -175,31 +175,21 @@ export default definePlugin({
- {settings.store.avatarClick ? ( -
- -
- ) : ( -
- -
- )} +
+ +
); },