chore(config-ui): remove console.log (#6714)

diff --git a/config-ui/src/features/connections/slice.ts b/config-ui/src/features/connections/slice.ts
index af62d5b..9056d60 100644
--- a/config-ui/src/features/connections/slice.ts
+++ b/config-ui/src/features/connections/slice.ts
@@ -54,7 +54,6 @@
       .filter((plugin) => plugin === 'webhook')
       .map(async () => {
         const webhooks = await API.plugin.webhook.list();
-        console.log(webhooks);
         return webhooks.map((webhook) => transformWebhook(webhook));
       }),
   );