🎨 Lint project

This commit is contained in:
Rune Harlyk
2025-10-11 10:54:07 +02:00
parent 91a7b170fe
commit a77eb0b1e0
36 changed files with 77 additions and 72 deletions
+4 -2
View File
@@ -33,9 +33,11 @@
const github = { href: 'https://github.com/' + page.data.github, active: true }
import type { ComponentType } from 'svelte'
type menuItem = {
title: string
icon: ConstructorOfATypedSvelteComponent
icon: ComponentType
href?: string
feature: boolean
active?: boolean
@@ -172,7 +174,7 @@
setActiveMenuItem(page.data.title)
})
const updateMenu = (event: any) => {
const updateMenu = (event: CustomEvent) => {
setActiveMenuItem(event.details)
}
</script>