diff --git a/CHANGELOG.md b/CHANGELOG.md index c8e142ac..81353dde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +- Fix support email. [#529](https://github.com/sourcebot-dev/sourcebot/pull/529) + ### Added - [Experimental][Sourcebot EE] Added permission syncing repository Access Control Lists (ACLs) between Sourcebot and GitHub. [#508](https://github.com/sourcebot-dev/sourcebot/pull/508) diff --git a/packages/backend/src/index.ts b/packages/backend/src/index.ts index c8574492..93f95e0b 100644 --- a/packages/backend/src/index.ts +++ b/packages/backend/src/index.ts @@ -78,7 +78,7 @@ connectionManager.startScheduler(); repoManager.startScheduler(); if (env.EXPERIMENT_EE_PERMISSION_SYNC_ENABLED === 'true' && !hasEntitlement('permission-syncing')) { - logger.error('Permission syncing is not supported in current plan. Please contact support@sourcebot.dev for assistance.'); + logger.error('Permission syncing is not supported in current plan. Please contact team@sourcebot.dev for assistance.'); process.exit(1); } else if (env.EXPERIMENT_EE_PERMISSION_SYNC_ENABLED === 'true' && hasEntitlement('permission-syncing')) { diff --git a/packages/web/src/app/[domain]/settings/license/page.tsx b/packages/web/src/app/[domain]/settings/license/page.tsx index 446d8c80..7c6be35e 100644 --- a/packages/web/src/app/[domain]/settings/license/page.tsx +++ b/packages/web/src/app/[domain]/settings/license/page.tsx @@ -78,7 +78,7 @@ export default async function LicensePage(props: LicensePageProps) {