From 0df09f2aabd8263a6373d70de70e6c4d889fceaf Mon Sep 17 00:00:00 2001 From: byeoon <47872200+byeoon@users.noreply.github.com> Date: Thu, 6 Jun 2024 08:33:15 -0400 Subject: [PATCH] blep small fix Co-authored-by: vee --- src/plugins/WebhookManager/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/WebhookManager/index.tsx b/src/plugins/WebhookManager/index.tsx index 86e603297..dceceb85f 100644 --- a/src/plugins/WebhookManager/index.tsx +++ b/src/plugins/WebhookManager/index.tsx @@ -128,7 +128,7 @@ export default definePlugin({ required: false } ], - execute: async (option, ctx) => { + async execute(option, ctx) { const webhookUrl = findOption(option, "url"); const webhookMessage = findOption(option, "message");