From 4b5eac3df86a0aafe8136e18b792ac141c9e7ff6 Mon Sep 17 00:00:00 2001 From: Francesca Giannino Date: Fri, 20 Feb 2026 10:03:27 +0100 Subject: [PATCH] fix: formatting --- astro/src/components/patterns/Sidebar/SidebarItemsList.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/astro/src/components/patterns/Sidebar/SidebarItemsList.astro b/astro/src/components/patterns/Sidebar/SidebarItemsList.astro index fa637ed0..38a5f189 100644 --- a/astro/src/components/patterns/Sidebar/SidebarItemsList.astro +++ b/astro/src/components/patterns/Sidebar/SidebarItemsList.astro @@ -52,7 +52,9 @@ const filteredItems = filterItems(items, version); const itemVersioned = item.submenu?.versioned ?? versioned; const itemBasePath = item.submenu?.basePath ?? basePath; - const href = itemHref ? resolveHref(itemHref, lang, itemBasePath, itemVersioned, version) : ''; + const href = itemHref + ? resolveHref(itemHref, lang, itemBasePath, itemVersioned, version) + : ''; const isActive = hasSubmenu(item) && variant === 'root'