diff --git a/infrastructure/control-panel/src/routes/+layout.svelte b/infrastructure/control-panel/src/routes/+layout.svelte index bd77d4c40..bd6d767b8 100644 --- a/infrastructure/control-panel/src/routes/+layout.svelte +++ b/infrastructure/control-panel/src/routes/+layout.svelte @@ -15,12 +15,11 @@ { label: 'Actions', href: '/actions' } ]; - const isActive = (href: string) => - href === '/' ? pageUrl === '/' : pageUrl.startsWith(href); + const isActive = (href: string) => (href === '/' ? pageUrl === '/' : pageUrl.startsWith(href));
-