Fix linter complaints

This commit is contained in:
Roman Krček
2025-06-27 23:31:37 +02:00
parent 9fb76cbc8b
commit 10badafb63

View File

@@ -1,8 +1,7 @@
<script lang="ts">
import Papa from 'papaparse';
type Participant = { name: string; surname: string; email: string };
let { participants = $bindable() } = $props() as { participants: Participant[] };
let { participants = $bindable() } = $props();
let loading = $state(false);
let showForm = $derived(participants.length === 0);