Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ A visual demonstration is strongly recommended, for both the original and new ch

<!-- Remove bullet points below that don't apply to you -->

- 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
1 change: 0 additions & 1 deletion packages/docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"group": "Integrations Guides",
"pages": [
"integrations/index",
"integrations/deel",
"integrations/aws",
"integrations/azure",
"integrations/gcp"
Expand Down
3 changes: 1 addition & 2 deletions packages/integrations/src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
Loading