diff options
author | Wolfgang Müller | 2024-03-31 13:28:53 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-03-31 13:28:53 +0200 |
commit | 384b96e2b80081393b011c7509f2ab10413ea0f8 (patch) | |
tree | 29e5384ee927ff90bfeb40bca938fe4eed527a11 /frontend | |
parent | c4c9ac2b4cb91f56501399d33778fd84e408ac9c (diff) | |
download | hircine-384b96e2b80081393b011c7509f2ab10413ea0f8.tar.gz |
frontend: Use @ts-expect error instead of @ts-ignore
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; |