style: fix formatting via prettier

This commit is contained in:
2026-08-28 14:29:54 +05:00
parent 10278981ba
commit ada96b3534
124 changed files with 8211 additions and 5662 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
<script lang="ts">
import Field from './Field.svelte';
import Field from "./Field.svelte";
interface Props {
id: string;
@@ -9,11 +9,11 @@
hint?: string;
}
let { id, label, value = $bindable(''), options, hint }: Props = $props();
let { id, label, value = $bindable(""), options, hint }: Props = $props();
</script>
<Field {id} {label} {hint}>
<select id={id} class="control" bind:value>
<select {id} class="control" bind:value>
{#each options as option (option.value)}
<option value={option.value}>{option.label}</option>
{/each}