diff --git a/src/components/charts/chart.ts b/src/components/charts/chart.ts
index ca2cad07..ef5dcc8f 100644
--- a/src/components/charts/chart.ts
+++ b/src/components/charts/chart.ts
@@ -737,13 +737,8 @@ export default class AstraChart extends ClassifiedElement {
// Line break (double space followed by a newline)
markdown = markdown.replace(/ \n/g, '
')
- return html`
- ${layer?.type === 'single_value'
- ? // Single value charts show the highlights at the bottom of the card
- html`${headerSection} ${chartSection}` // ${highlightSection} - Until more meaningful highlights are available, disabling for single value
- : // All other charts show the highlights above the chart rendering
- html`
${headerSection} ${highlightSection}
- ${chartSection}`}
+
+ ${layer?.type === 'single_value'
+ ? // Single value charts show the highlights at the bottom of the card
+ html`${headerSection} ${chartSection}` // ${highlightSection} - Until more meaningful highlights are available, disabling for single value
+ : // All other charts show the highlights above the chart rendering
+ html`
${headerSection} ${highlightSection}
+ ${chartSection}`}
+
`