Fix typescript/svelte checks

This commit is contained in:
nemunaire 2025-10-24 17:20:35 +07:00
commit 53a48cba07
17 changed files with 199 additions and 155 deletions

View file

@ -1,8 +1,8 @@
<script lang="ts">
import type { DKIMRecord } from "$lib/api/types.gen";
import type { DkimRecord } from "$lib/api/types.gen";
interface Props {
dkimRecords?: DKIMRecord[];
dkimRecords?: DkimRecord[];
}
let { dkimRecords }: Props = $props();