diff --git a/src/routes/etf/[tickerID]/+page.svelte b/src/routes/etf/[tickerID]/+page.svelte
index 060a98d5..0fb60474 100644
--- a/src/routes/etf/[tickerID]/+page.svelte
+++ b/src/routes/etf/[tickerID]/+page.svelte
@@ -188,11 +188,11 @@
// Loop through each point in the shared tooltip
this.points?.forEach((point) => {
- tooltipContent += `${point.series.name}: ${point.y}
`;
+ tooltipContent += `${point.series.name}: ${point.y}
`;
});
// Append the formatted date at the end
- tooltipContent += `${formattedDate}
`;
+ tooltipContent += `${formattedDate}
`;
return tooltipContent;
},
@@ -674,82 +674,66 @@