From d85c0787f8a19d07ef0453a4481bca9a0ef1ce35 Mon Sep 17 00:00:00 2001 From: "aitor c. urrutia aranburu" Date: Sat, 10 Jan 2026 09:53:50 +0100 Subject: [PATCH] fix: mugikor menuaren maketazioa hobetzen du --- src/components/HeaderLink.astro | 3 ++- src/style/global.css | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/HeaderLink.astro b/src/components/HeaderLink.astro index 1fd1b56..3b6ccf2 100644 --- a/src/components/HeaderLink.astro +++ b/src/components/HeaderLink.astro @@ -1,6 +1,6 @@ --- const { href, class: className, ...props } = Astro.props; -let isActive; +let isActive: boolean; if (href === "/") { isActive = Astro.url.pathname === href; @@ -13,6 +13,7 @@ if (href === "/") { +