File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/core/src/codewhisperer/commands Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -716,15 +716,15 @@ export async function postTransformationJob() {
716
716
if ( transformByQState . isSucceeded ( ) ) {
717
717
notificationMessage = CodeWhispererConstants . jobCompletedNotification
718
718
if ( transformByQState . getSourceJDKVersion ( ) !== transformByQState . getTargetJDKVersion ( ) ) {
719
- chatMessage += CodeWhispererConstants . upgradeLibrariesMessage
719
+ notificationMessage += CodeWhispererConstants . upgradeLibrariesMessage
720
720
}
721
721
void vscode . window . showInformationMessage ( notificationMessage , {
722
722
title : localizedText . ok ,
723
723
} )
724
724
} else if ( transformByQState . isPartiallySucceeded ( ) ) {
725
725
notificationMessage = CodeWhispererConstants . jobPartiallyCompletedNotification
726
726
if ( transformByQState . getSourceJDKVersion ( ) !== transformByQState . getTargetJDKVersion ( ) ) {
727
- chatMessage += CodeWhispererConstants . upgradeLibrariesMessage
727
+ notificationMessage += CodeWhispererConstants . upgradeLibrariesMessage
728
728
}
729
729
void vscode . window
730
730
. showInformationMessage ( notificationMessage , CodeWhispererConstants . amazonQFeedbackText )
You can’t perform that action at this time.
0 commit comments