Skip to content

Commit 77bd8a7

Browse files
authored
fix(amazonq): Align example help text with the prompt message that it sends in chat (#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
1 parent c1b76df commit 77bd8a7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Bug Fix",
3+
"description": "Align example help text with prompt message in chat"
4+
}

packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ export class Messenger {
438438
let message = ''
439439
switch (quickAction) {
440440
case 'help':
441-
message = 'What can Amazon Q help me with?'
441+
message = 'How can Amazon Q help me?'
442442
break
443443
}
444444

0 commit comments

Comments
 (0)