From 161d02620aa2fc4d5e64cb600f7aa1e6f7901b7e Mon Sep 17 00:00:00 2001 From: Thomas Trompette Date: Wed, 21 Feb 2024 16:25:35 +0100 Subject: [PATCH] Fix developers url and remove webhook url error (#4120) Fix developers url + remove webhook url error Co-authored-by: Thomas Trompette --- packages/twenty-front/src/App.tsx | 8 ++++---- .../workspace-query-runner/jobs/call-webhook.job.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/twenty-front/src/App.tsx b/packages/twenty-front/src/App.tsx index abec5f438..c892a6402 100644 --- a/packages/twenty-front/src/App.tsx +++ b/packages/twenty-front/src/App.tsx @@ -137,14 +137,14 @@ export const App = () => { path={SettingsPath.NewObject} element={} /> + } + /> - } - /> } diff --git a/packages/twenty-server/src/workspace/workspace-query-runner/jobs/call-webhook.job.ts b/packages/twenty-server/src/workspace/workspace-query-runner/jobs/call-webhook.job.ts index 597d515f6..5945b68c1 100644 --- a/packages/twenty-server/src/workspace/workspace-query-runner/jobs/call-webhook.job.ts +++ b/packages/twenty-server/src/workspace/workspace-query-runner/jobs/call-webhook.job.ts @@ -26,7 +26,7 @@ export class CallWebhookJob implements MessageQueueJob { `CallWebhookJob successfully called on targetUrl '${data.targetUrl}'`, ); } catch (err) { - throw new Error( + this.logger.error( `Error calling webhook on targetUrl '${data.targetUrl}': ${err}`, ); }