From 6e3cafce42ea4eee7e1103225ebe5cb9931967e1 Mon Sep 17 00:00:00 2001 From: V Date: Thu, 11 May 2023 02:34:25 +0200 Subject: Translate: Only add button in chat box --- src/plugins/translate/index.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/plugins/translate/index.tsx') diff --git a/src/plugins/translate/index.tsx b/src/plugins/translate/index.tsx index cb61254..d71b2da 100644 --- a/src/plugins/translate/index.tsx +++ b/src/plugins/translate/index.tsx @@ -45,7 +45,7 @@ export default definePlugin({ find: ".activeCommandOption", replacement: { match: /(.)\.push.{1,30}disabled:(\i),.{1,20}\},"gift"\)\)/, - replace: "$&;try{$2||$1.push($self.chatBarIcon())}catch{}", + replace: "$&;try{$2||$1.push($self.chatBarIcon(arguments[0]))}catch{}", } }, ], @@ -82,5 +82,9 @@ export default definePlugin({ removeAccessory("vc-translation"); }, - chatBarIcon: ErrorBoundary.wrap(TranslateChatBarIcon, { noop: true }), + chatBarIcon: (slateProps: any) => ( + + + + ) }); -- cgit