Skip to content

Commit e164550

Browse files
committed
fix: fix lint error
1 parent 6c9affe commit e164550

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/amazonq/src/lsp/chat/messages.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export function registerMessageListeners(
306306
languageClient.sendNotification(followUpClickNotificationType.method, message.params)
307307
}
308308
break
309-
case buttonClickRequestType.method:
309+
case buttonClickRequestType.method: {
310310
const buttonResult = await languageClient.sendRequest<ButtonClickResult>(
311311
buttonClickRequestType.method,
312312
message.params
@@ -317,6 +317,7 @@ export function registerMessageListeners(
317317
)
318318
}
319319
break
320+
}
320321
default:
321322
if (isServerEvent(message.command)) {
322323
languageClient.sendNotification(message.command, message.params)

0 commit comments

Comments
 (0)