Skip to content

Commit 640d1d9

Browse files
authored
Merge branch 'main' into michael/fix-SOU-559
2 parents 512bfb5 + fb82717 commit 640d1d9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

‎CHANGELOG.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Added PostHog events for chat UI interactions (details card expand/collapse, copy answer, table of contents toggle) and repo tracking in `wa_chat_message_sent`. [#922](https://github.com/sourcebot-dev/sourcebot/pull/922)
1212
- Added Bitbucket Cloud OAuth identity provider support (`provider: "bitbucket-cloud"`) for SSO and account-linked permission syncing. [#924](https://github.com/sourcebot-dev/sourcebot/pull/924)
1313

14+
### Changed
15+
- Hide version upgrade toast for askgithub deployment (`EXPERIMENT_ASK_GH_ENABLED`). [#931](https://github.com/sourcebot-dev/sourcebot/pull/931)
16+
1417
### Fixed
1518
- Fixed text inside angle brackets (e.g., `<id>`) being hidden in chat prompt display due to HTML parsing. [#929](https://github.com/sourcebot-dev/sourcebot/pull/929) [#932](https://github.com/sourcebot-dev/sourcebot/pull/932)
1619

‎packages/web/src/app/[domain]/layout.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export default async function Layout(props: LayoutProps) {
201201
{children}
202202
<SyntaxReferenceGuide />
203203
<GitHubStarToast />
204-
<UpgradeToast />
204+
{env.EXPERIMENT_ASK_GH_ENABLED !== 'true' && <UpgradeToast />}
205205
</SyntaxGuideProvider>
206206
)
207207
}

0 commit comments

Comments
 (0)