This is an automated email from the ASF dual-hosted git repository.
mintsweet pushed a commit to branch release-v0.20
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/release-v0.20 by this push:
new 714a5ffa8 chore(config-ui): remove console.log (#6714)
714a5ffa8 is described below
commit 714a5ffa8415dd1e92d9620561720d2896267c8c
Author: 青湛 <[email protected]>
AuthorDate: Tue Jan 2 20:48:17 2024 +1300
chore(config-ui): remove console.log (#6714)
---
config-ui/src/features/connections/slice.ts | 1 -
1 file changed, 1 deletion(-)
diff --git a/config-ui/src/features/connections/slice.ts
b/config-ui/src/features/connections/slice.ts
index af62d5b49..9056d60a5 100644
--- a/config-ui/src/features/connections/slice.ts
+++ b/config-ui/src/features/connections/slice.ts
@@ -54,7 +54,6 @@ export const init = createAsyncThunk('connections/init',
async (plugins: string[
.filter((plugin) => plugin === 'webhook')
.map(async () => {
const webhooks = await API.plugin.webhook.list();
- console.log(webhooks);
return webhooks.map((webhook) => transformWebhook(webhook));
}),
);