Skip to content

Commit a58f164

Browse files
committed
Type check fixes.
1 parent 765b024 commit a58f164

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/routes/(v1)/tests/reset-component-2/+page.svelte

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,9 @@
44
import SuperForm from './Form.svelte';
55
import TextField from './TextField.svelte';
66
import { zod } from '$lib/adapters/zod.js';
7-
import type { Snippet } from 'svelte';
87
98
let visible = $state(true);
109
let { data } = $props();
11-
12-
type MsgType = { status: number; text: string };
1310
</script>
1411

1512
<h3>Multiple componentized Forms</h3>

src/routes/(v2)/v2/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
export let data;
44
</script>
55

6-
<Navigation testDirs={data.testDirs} />
6+
<Navigation />
77

88
<slot />

0 commit comments

Comments
 (0)