You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqCodeTest/CodeWhispererUTGChatManager.kt
+13-12Lines changed: 13 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -370,21 +370,21 @@ class CodeWhispererUTGChatManager(val project: Project, private val cs: Coroutin
370
370
if (previousIterationContext ==null) {
371
371
// show another card as the answer
372
372
val jobSummary = testGenerationResponse?.testGenerationJob()?.jobSummary()?.trim() ?:""
373
-
val cleanedJobSummary = jobSummary
373
+
374
+
val cleanedPlanSummary = jobSummary
375
+
.replace(Regex("^```\\s*"), "") // Remove leading triple backticks
0 commit comments