diff --git a/eslint.config.js b/eslint.config.js index 408588e..44938c9 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -30,7 +30,6 @@ export default [ 'static/built/*', 'static/styleguide/*', 'yarn.lock', - 'vite.config.ts.timestamp*', ], }, js.configs.recommended, diff --git a/package.json b/package.json index 602f684..7f9d928 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "@sveltejs/kit": "^2.7.2", "@sveltejs/vite-plugin-svelte": "^4.0.0", "@testing-library/jest-dom": "^6.5.0", - "@testing-library/svelte": "^5.2.3", + "@testing-library/svelte": "^5.2.4", "@types/eslint-config-prettier": "^6.11.3", "@types/eslint__js": "^8.42.3", "@types/lodash": "^4.17.10", diff --git a/src/lib/components/util/Icon.svelte b/src/lib/components/util/Icon.svelte index e528a38..659ed6d 100644 --- a/src/lib/components/util/Icon.svelte +++ b/src/lib/components/util/Icon.svelte @@ -34,10 +34,10 @@ let { name, size = null }: Props = $props(); - const SvelteComponent_1 = $derived(icons[name] ?? null); + const IconComponent = $derived(icons[name] ?? null); -