summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2024-03-31 13:28:53 +0200
committerWolfgang Müller2024-03-31 13:28:53 +0200
commit384b96e2b80081393b011c7509f2ab10413ea0f8 (patch)
tree29e5384ee927ff90bfeb40bca938fe4eed527a11
parentc4c9ac2b4cb91f56501399d33778fd84e408ac9c (diff)
downloadhircine-384b96e2b80081393b011c7509f2ab10413ea0f8.tar.gz
frontend: Use @ts-expect error instead of @ts-ignore
-rw-r--r--frontend/src/lib/components/Select.svelte3
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;