refactor: fix all lint errors and improve code quality

This commit is contained in:
Rasmus Q
2026-03-15 21:10:58 +00:00
parent f739288866
commit 8d9acf3d43
32 changed files with 70 additions and 66 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
import type { HTMLAttributes } from 'svelte/elements';
type Props = HTMLAttributes<HTMLHeadingElement> & {
children?: any;
children?: import('svelte').Snippet;
};
let { class: className, children, ...restProps }: Props = $props();