Fix linter complaints
This commit is contained in:
@@ -1,8 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Papa from 'papaparse';
|
import Papa from 'papaparse';
|
||||||
|
|
||||||
type Participant = { name: string; surname: string; email: string };
|
let { participants = $bindable() } = $props();
|
||||||
let { participants = $bindable() } = $props() as { participants: Participant[] };
|
|
||||||
let loading = $state(false);
|
let loading = $state(false);
|
||||||
let showForm = $derived(participants.length === 0);
|
let showForm = $derived(participants.length === 0);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user