Skip to content

Commit 061b63b

Browse files
committed
remove consoleLog
1 parent 6e90c64 commit 061b63b

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

packages/core/src/amazonq/webview/messages/messageDispatcher.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ export function dispatchWebViewMessagesToApps(
8787
return
8888
}
8989
case 'message-dismissed': {
90-
// eslint-disable-next-line aws-toolkits/no-console-log
91-
console.log('message-dismissed', msg)
9290
if (msg.messageId === 'programmerModeCardId') {
9391
void globals.globalState.tryUpdate('aws.amazonq.dismissedCards', true)
9492
}

packages/core/src/amazonq/webview/ui/tabs/generator.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ export class TabDataGenerator {
5151
taskName?: string,
5252
isSMUS?: boolean
5353
): MynahUIDataModel {
54-
// eslint-disable-next-line aws-toolkits/no-console-log
55-
console.log('tabType', tabType)
5654
if (tabType === 'agentWalkthrough') {
5755
return agentWalkthroughDataModel
5856
}
@@ -62,10 +60,7 @@ export class TabDataGenerator {
6260
}
6361

6462
const programmerModeCardId = 'programmerModeCardId'
65-
6663
const isProgrammerModeCardDismissed = this.dismissedCards
67-
// eslint-disable-next-line aws-toolkits/no-console-log
68-
console.log('trueOrFalse', isProgrammerModeCardDismissed)
6964
const programmerModeCard: ChatItem | undefined = !isProgrammerModeCardDismissed
7065
? ({
7166
type: ChatItemType.ANSWER,

0 commit comments

Comments
 (0)