fix(ask-ai): remove parentheses from example questions for consistency

Make example question format match the pre-fill format:
- Before: 'question (My version: product)'
- After: 'question My version: product'

This ensures users don't think there's a difference between the two formats.
jts-askai-group-filters
Jason Stirnaman 2025-11-12 10:10:55 -06:00
parent e406af3861
commit 75b7f82f3e
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ function getProductExampleQuestions(): string {
// Append version hint to each question
const questionsWithHint = questions.map((question) => {
return `${question} (My version: ${productName})`;
return `${question} My version: ${productName}`;
});
return questionsWithHint.join(',');