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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- Removed the Ask Sourcebot first-visit tutorial banner. [#1675](https://github.com/sourcebot-dev/sourcebot/pull/1675)

### Fixed
- Removed suggested example queries from the Ask landing page. [#1674](https://github.com/sourcebot-dev/sourcebot/pull/1674)

## [5.1.14] - 2026-09-17

### Added
Expand Down
7 changes: 0 additions & 7 deletions packages/web/src/app/(app)/chat/chatLandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import { env } from "@sourcebot/shared";
import { auth } from "@/auth";
import { hasEntitlement } from "@/lib/entitlements";
import { listAgentSkillCommandsOrEmpty } from "@/ee/features/chat/skills/skillCommands.server";
import { ExampleQuestionBadges } from "./components/exampleQuestionBadges";
import { selectRandomExampleQuestions } from "./components/exampleQuestions";

export async function ChatLandingPage() {
const languageModels = await getConfiguredLanguageModelsInfo();
Expand All @@ -22,7 +20,6 @@ export async function ChatLandingPage() {
const askCommands = session?.user && hasAskEntitlement
? await listAgentSkillCommandsOrEmpty()
: [];
const exampleQuestions = selectRandomExampleQuestions(3);

if (isServiceError(allRepos)) {
throw new ServiceErrorException(allRepos);
Expand Down Expand Up @@ -50,10 +47,6 @@ export async function ChatLandingPage() {
isLoginWallEnabled={env.EXPERIMENT_ASK_GH_ENABLED === 'true'}
maxImageBytes={env.SOURCEBOT_CHAT_ATTACHMENT_MAX_IMAGE_BYTES}
/>
<ExampleQuestionBadges
questions={exampleQuestions}
disabled={languageModels.length === 0}
/>
</CustomSlateEditor>
</div>
</ChatLandingDropzone>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

86 changes: 0 additions & 86 deletions packages/web/src/app/(app)/chat/components/exampleQuestions.ts

This file was deleted.

Loading