diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0b3d51e42..84366fed1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -38,7 +38,7 @@ A visual demonstration is strongly recommended, for both the original and new ch -- I haven't read the [contributing guide](https://github.com/trycomp/comp/blob/main/CONTRIBUTING.md) +- I haven't read the [contributing guide](https://github.com/trycompai/comp/blob/main/CONTRIBUTING.md) - My code doesn't follow the style guidelines of this project - I haven't commented my code, particularly in hard-to-understand areas - I haven't checked if my changes generate no new warnings diff --git a/packages/docs/docs.json b/packages/docs/docs.json index 3340d78ef..952e06c76 100644 --- a/packages/docs/docs.json +++ b/packages/docs/docs.json @@ -37,7 +37,6 @@ "group": "Integrations Guides", "pages": [ "integrations/index", - "integrations/deel", "integrations/aws", "integrations/azure", "integrations/gcp" diff --git a/packages/integrations/src/index.ts b/packages/integrations/src/index.ts index 4cdd18b0d..902b1be86 100644 --- a/packages/integrations/src/index.ts +++ b/packages/integrations/src/index.ts @@ -1,9 +1,8 @@ import Aws from './aws/config'; import Azure from './azure/config'; -import Deel from './deel/config'; import Gcp from './gcp/config'; -export const integrations = [Aws, Azure, Deel, Gcp]; +export const integrations = [Aws, Azure, Gcp]; // Export the integration factory export { getIntegrationHandler, type IntegrationHandler } from './factory';