Skip to content

Commit ef46c01

Browse files
chore: fix support email (#529)
1 parent e1b6239 commit ef46c01

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
- Fix support email. [#529](https://github.com/sourcebot-dev/sourcebot/pull/529)
12+
1013
### Added
1114
- [Experimental][Sourcebot EE] Added permission syncing repository Access Control Lists (ACLs) between Sourcebot and GitHub. [#508](https://github.com/sourcebot-dev/sourcebot/pull/508)
1215

packages/backend/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ connectionManager.startScheduler();
7878
repoManager.startScheduler();
7979

8080
if (env.EXPERIMENT_EE_PERMISSION_SYNC_ENABLED === 'true' && !hasEntitlement('permission-syncing')) {
81-
logger.error('Permission syncing is not supported in current plan. Please contact support@sourcebot.dev for assistance.');
81+
logger.error('Permission syncing is not supported in current plan. Please contact team@sourcebot.dev for assistance.');
8282
process.exit(1);
8383
}
8484
else if (env.EXPERIMENT_EE_PERMISSION_SYNC_ENABLED === 'true' && hasEntitlement('permission-syncing')) {

packages/web/src/app/[domain]/settings/license/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default async function LicensePage(props: LicensePageProps) {
7878
</div>
7979

8080
<Button asChild>
81-
<a href={`mailto:support@sourcebot.dev?subject=License Support - ${licenseKey.id}&body=License ID: ${licenseKey.id}`}>
81+
<a href={`mailto:team@sourcebot.dev?subject=License Support - ${licenseKey.id}&body=License ID: ${licenseKey.id}`}>
8282
<Mail className="h-4 w-4 mr-2" />
8383
Contact Support
8484
</a>

0 commit comments

Comments
 (0)