Skip to content

Commit e440035

Browse files
cursoragentmsukkari
andcommitted
chore: update example URLs and add changelog entry
- Changed example URL from example.sourcebot.dev to sourcebot.example.com - Added changelog entry for PR #764 Co-authored-by: michael <michael@sourcebot.dev>
1 parent 22939af commit e440035

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Bumped Node.js version to v24. [#753](https://github.com/sourcebot-dev/sourcebot/pull/753)
1313

1414
### Fixes
15+
- Fixed hardcoded localhost URLs in org URL and invite links by using AUTH_URL as fallback. [#764](https://github.com/sourcebot-dev/sourcebot/pull/764)
1516
- Fix autocomplete when repo includes default port [#762](https://github.com/sourcebot-dev/sourcebot/pull/762)
1617
- Fixed "Repository not found for file: x" error when searching in orphaned shards. [#761](https://github.com/sourcebot-dev/sourcebot/pull/761)
1718

packages/web/src/emails/inviteUserEmail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ InviteUserEmail.PreviewProps = {
138138
},
139139
orgName: 'Enigma',
140140
orgImageUrl: SOURCEBOT_PLACEHOLDER_AVATAR_URL,
141-
inviteLink: 'https://example.sourcebot.dev/redeem?invite_id=1234',
141+
inviteLink: 'https://sourcebot.example.com/redeem?invite_id=1234',
142142
} satisfies InviteUserEmailProps;
143143

144144
export default InviteUserEmail;

packages/web/src/emails/joinRequestApprovedEmail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const JoinRequestApprovedEmail = ({
8383
};
8484

8585
JoinRequestApprovedEmail.PreviewProps = {
86-
baseUrl: 'https://example.sourcebot.dev',
86+
baseUrl: 'https://sourcebot.example.com',
8787
user: {
8888
name: 'Alan Turing',
8989
email: 'alan.turing@example.com',

packages/web/src/emails/joinRequestSubmittedEmail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const RequestorInfo = ({ email, name }: { email: string, name?: string }) => {
127127
}
128128

129129
JoinRequestSubmittedEmail.PreviewProps = {
130-
baseUrl: 'https://example.sourcebot.dev',
130+
baseUrl: 'https://sourcebot.example.com',
131131
requestor: {
132132
name: 'Alan Turing',
133133
email: 'alan.turing@example.com',

0 commit comments

Comments
 (0)