We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c9affe commit e164550Copy full SHA for e164550
packages/amazonq/src/lsp/chat/messages.ts
@@ -306,7 +306,7 @@ export function registerMessageListeners(
306
languageClient.sendNotification(followUpClickNotificationType.method, message.params)
307
}
308
break
309
- case buttonClickRequestType.method:
+ case buttonClickRequestType.method: {
310
const buttonResult = await languageClient.sendRequest<ButtonClickResult>(
311
buttonClickRequestType.method,
312
message.params
@@ -317,6 +317,7 @@ export function registerMessageListeners(
317
)
318
319
320
+ }
321
default:
322
if (isServerEvent(message.command)) {
323
languageClient.sendNotification(message.command, message.params)
0 commit comments