From ba944b471ae87f4dc0d24b08e2b5098bb1f44e87 Mon Sep 17 00:00:00 2001 From: Morgan <33722304+ThyMinimalDev@users.noreply.github.com> Date: Tue, 16 Jan 2024 17:10:58 +0200 Subject: [PATCH] refactor: app-store imports webhook.ts from @calcom/web (#13257) --- packages/app-store/alby/api/index.ts | 2 +- packages/app-store/paypal/api/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app-store/alby/api/index.ts b/packages/app-store/alby/api/index.ts index f29c527245..b4b88a12a7 100644 --- a/packages/app-store/alby/api/index.ts +++ b/packages/app-store/alby/api/index.ts @@ -1,2 +1,2 @@ export { default as add } from "./add"; -export { default as webhook, config } from "@calcom/web/pages/api/integrations/alby/webhook"; +export { default as webhook, config } from "./webhook"; diff --git a/packages/app-store/paypal/api/index.ts b/packages/app-store/paypal/api/index.ts index 991a95c0c7..c25fe7dd8a 100644 --- a/packages/app-store/paypal/api/index.ts +++ b/packages/app-store/paypal/api/index.ts @@ -1,3 +1,3 @@ export { default as add } from "./add"; -export { default as webhook, config } from "@calcom/web/pages/api/integrations/paypal/webhook"; +export { default as webhook, config } from "./webhook"; export { default as capture } from "./capture";