fix further type problems

This commit is contained in:
2025-06-10 14:33:40 +02:00
parent e4d74e4331
commit 07247486ab
10 changed files with 15 additions and 63 deletions

View File

@@ -1,10 +1,10 @@
<script lang="ts">
/** @type {import('./$types').ActionData} */
export let form;
import type { ActionData } from "./$types";
export let form: ActionData;
let user = form?.user ?? '';
function buttonClick() {}
</script>
<!--