Skip to content

Commit 68a18b4

Browse files
committed
fix the no spinner for writig a file & change the UI on console & update mynahUI version
1 parent 22fbd16 commit 68a18b4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@
522522
"@aws-sdk/s3-request-presigner": "<3.731.0",
523523
"@aws-sdk/smithy-client": "<3.731.0",
524524
"@aws-sdk/util-arn-parser": "<3.731.0",
525-
"@aws/mynah-ui": "^4.26.1",
525+
"@aws/mynah-ui": "^4.28.0",
526526
"@gerhobbelt/gitignore-parser": "^0.2.0-9",
527527
"@iarna/toml": "^2.2.5",
528528
"@smithy/fetch-http-handler": "^5.0.1",

packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,10 @@ export class Messenger {
235235
} else {
236236
// TODO: Handle the error
237237
}
238+
} else if (cwChatEvent.toolUseEvent?.stop === undefined) {
239+
if (toolUseInput !== '') {
240+
this.sendInitalStream(tabID, triggerID, undefined)
241+
}
238242
}
239243

240244
if (

packages/core/src/codewhispererChat/tools/executeBash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export class ExecuteBash {
208208

209209
public queueDescription(updates: Writable): void {
210210
updates.write(`I will run the following shell command:\n`)
211-
updates.write('```bash\n' + this.command + '\n```')
211+
updates.write('```shell\n' + this.command + '\n```')
212212
updates.end()
213213
}
214214
}

0 commit comments

Comments
 (0)