diff --git a/package.json b/package.json index c5db4e5a..1c7fc5f1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@aws/mynah-ui", "displayName": "AWS Mynah UI", - "version": "2.0.0-beta.13.0", + "version": "2.0.0-beta.13.1", "description": "AWS Tookit VSCode and Intellij IDE Extension Mynah UI", "publisher": "Amazon Web Services", "license": "Apache License 2.0", diff --git a/src/components/suggestion-card/suggestion-card-body.ts b/src/components/suggestion-card/suggestion-card-body.ts index b636a617..aca57aab 100644 --- a/src/components/suggestion-card/suggestion-card-body.ts +++ b/src/components/suggestion-card/suggestion-card-body.ts @@ -158,7 +158,6 @@ export class SuggestionCardBody { let incomingBody = props.suggestion.body; if (props.suggestion.body !== undefined && props.highlightRangeWithTooltip !== undefined && props.highlightRangeWithTooltip.length > 0) { props.highlightRangeWithTooltip.forEach((highlightRangeWithTooltip, index) => { - console.log(highlightRangeWithTooltip); if (incomingBody !== undefined) { const generatedStartMarkup = `${highlightersWithTooltip.start.markupStart}${highlightersWithTooltip.start.markupAttirubtes(index.toString())}${highlightersWithTooltip.start.markupEnd}`; let calculatedStartIndex = (highlightRangeWithTooltip.recommendationContentSpan.start + (index * (generatedStartMarkup.length + highlightersWithTooltip.end.markup.length)));