summaryrefslogtreecommitdiff
path: root/src/components/Navbar/Breadcrumbs.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Navbar/Breadcrumbs.astro')
-rw-r--r--src/components/Navbar/Breadcrumbs.astro4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/Navbar/Breadcrumbs.astro b/src/components/Navbar/Breadcrumbs.astro
index 1e82fd9..f949873 100644
--- a/src/components/Navbar/Breadcrumbs.astro
+++ b/src/components/Navbar/Breadcrumbs.astro
@@ -23,9 +23,7 @@ const t = translate(locale);
parentRoutes.map((route) => {
return (
<li>
- <a class="link" href={`/${locale}${route}`}>
- {t(tBreadcrumbs, { key: route })}
- </a>
+ <a href={`/${locale}${route}`}>{t(tBreadcrumbs, { key: route })}</a>
</li>
);
})