diff options
Diffstat (limited to 'src/plugins/translate/index.tsx')
-rw-r--r-- | src/plugins/translate/index.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
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) => ( + <ErrorBoundary noop> + <TranslateChatBarIcon slateProps={slateProps} /> + </ErrorBoundary> + ) }); |