diff --git a/src/components/sidebar/SidebarNav.astro b/src/components/sidebar/SidebarNav.astro
index 1606e6307c..ea64a958fa 100644
--- a/src/components/sidebar/SidebarNav.astro
+++ b/src/components/sidebar/SidebarNav.astro
@@ -69,7 +69,7 @@ url = url.replace(/\.html$/, '');
]}
href={child.slug}
>
- {child.title}
+
);
diff --git a/src/pages/tools/docs/[version]/[...slug].astro b/src/pages/tools/docs/[version]/[...slug].astro
index 30509a266a..bc82754d81 100644
--- a/src/pages/tools/docs/[version]/[...slug].astro
+++ b/src/pages/tools/docs/[version]/[...slug].astro
@@ -17,7 +17,7 @@ export async function getStaticPaths() {
.filter((child) => child.id.split('/')[2] === entry && child.id.split('/')[3])
.map((tool_entry) => {
return {
- title: tool_entry.id.split('/')[3].replace(/\.md$/, ''),
+ title: tool_entry.id.split('/')[3].replace(/\.md$/, '')
,
slug: '/tools/' + tool_entry.id.replace(/\.md$/, ''),
};
}),