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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "Bug Fix",
"description": "Remove warning when no input is provided to inline chat input box"
}
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export class InlineChatController {
})
.then(async (query) => {
if (!query || query.trim() === '') {
void vscode.window.showWarningMessage('Amazon Q: Instructions for cannot be empty')
getLogger().info('inlineQuickPick query is empty')
return
}

Expand Down
Loading