Skip to content

Commit

Permalink
fix(amazonq): Align example help text with the prompt message that it…
Browse files Browse the repository at this point in the history
… sends in chat (aws#5898)

## Problem
- The examples text shows "How can Amazon Q help me?" but when you click
on it it shows "What can Amazon Q help me with?" in chat. This is
confusing to users

## Solution
- Align both the example help text and the prompt message in chat as
"How can Amazon Q help me?"

## Alternative solution
- Align them with "What can Amazon Q help me with?" instead
  • Loading branch information
jpinkney-aws authored Nov 4, 2024
1 parent c1b76df commit 77bd8a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "Bug Fix",
"description": "Align example help text with prompt message in chat"
}
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ export class Messenger {
let message = ''
switch (quickAction) {
case 'help':
message = 'What can Amazon Q help me with?'
message = 'How can Amazon Q help me?'
break
}

Expand Down

0 comments on commit 77bd8a7

Please sign in to comment.