style: fix self-closing div tags in BookingFlow.svelte
Lint & Vuln Scan / Go vulnerabilities (push) Successful in 22s
Lint & Vuln Scan / Frontend lint & types (push) Failing after 1m9s

This commit is contained in:
2026-06-25 17:17:20 +01:00
parent bc7558cd39
commit 4b5d85b0b9
@@ -1501,24 +1501,24 @@
<div class="mb-6 flex items-center justify-center gap-2"> <div class="mb-6 flex items-center justify-center gap-2">
{#each [1, 2, 3, 4] as _ (_)} {#each [1, 2, 3, 4] as _ (_)}
<div class="flex items-center gap-1"> <div class="flex items-center gap-1">
<div class="h-8 w-8 animate-pulse rounded-full bg-gray-200" /> <div class="h-8 w-8 animate-pulse rounded-full bg-gray-200"></div>
<div class="h-3 w-16 animate-pulse rounded bg-gray-200" /> <div class="h-3 w-16 animate-pulse rounded bg-gray-200"></div>
</div> </div>
{#if _ < 4} {#if _ < 4}
<div class="mx-1 h-0.5 w-8 animate-pulse rounded bg-gray-200" /> <div class="mx-1 h-0.5 w-8 animate-pulse rounded bg-gray-200"></div>
{/if} {/if}
{/each} {/each}
</div> </div>
<Card.Root> <Card.Root>
<Card.Header> <Card.Header>
<div class="h-7 w-40 animate-pulse rounded bg-gray-200" /> <div class="h-7 w-40 animate-pulse rounded bg-gray-200"></div>
<div class="mt-2 h-4 w-64 animate-pulse rounded bg-gray-200" /> <div class="mt-2 h-4 w-64 animate-pulse rounded bg-gray-200"></div>
</Card.Header> </Card.Header>
<Card.Content class="space-y-4"> <Card.Content class="space-y-4">
<div class="h-16 animate-pulse rounded-lg bg-gray-100" /> <div class="h-16 animate-pulse rounded-lg bg-gray-100"></div>
<div class="h-16 animate-pulse rounded-lg bg-gray-100" /> <div class="h-16 animate-pulse rounded-lg bg-gray-100"></div>
<div class="h-16 animate-pulse rounded-lg bg-gray-100" /> <div class="h-16 animate-pulse rounded-lg bg-gray-100"></div>
</Card.Content> </Card.Content>
</Card.Root> </Card.Root>
{:else} {:else}