diff options
Diffstat (limited to '')
-rw-r--r-- | frontend/src/lib/components/Select.svelte | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/lib/components/Select.svelte b/frontend/src/lib/components/Select.svelte index 83f026c..413b50c 100644 --- a/frontend/src/lib/components/Select.svelte +++ b/frontend/src/lib/components/Select.svelte @@ -1,8 +1,7 @@ <script lang="ts"> import type { ListItem } from '$lib/Utils'; - /* eslint-disable @typescript-eslint/ban-ts-comment, @typescript-eslint/no-explicit-any */ - // @ts-ignore + // @ts-expect-error Svelecte 3 does not have types, and 4 (which does) is pending stabilization import Svelecte from 'svelecte'; let inputId: string; |