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 2374e67 commit abf8f43Copy full SHA for abf8f43
plugins/amazonq/mynah-ui/src/mynah-ui/ui/connector.ts
@@ -397,8 +397,13 @@ export class Connector {
397
}
398
399
onStopChatResponse = (tabID: string): void => {
400
- if (this.tabsStorage.getTab(tabID)?.type === 'featuredev') {
401
- this.featureDevChatConnector.onStopChatResponse(tabID)
+ switch (this.tabsStorage.getTab(tabID)?.type) {
+ case 'featuredev':
402
+ this.featureDevChatConnector.onStopChatResponse(tabID)
403
+ break
404
+ case 'cwc':
405
+ this.cwChatConnector.onStopChatResponse(tabID)
406
407
408
409
0 commit comments