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";