fixed warnings

This commit is contained in:
2026-06-18 01:45:38 +02:00
parent 7773199b91
commit 73819eb49f
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -194,7 +194,7 @@
</defs> </defs>
<!-- Out-of-stock spans — rose shade behind everything --> <!-- Out-of-stock spans — rose shade behind everything -->
{#each oosBands as b} {#each oosBands as b (b.x)}
<rect <rect
x={b.x} x={b.x}
y={PAD.t} y={PAD.t}
@@ -206,7 +206,7 @@
{/each} {/each}
<!-- Gridlines + price ticks --> <!-- Gridlines + price ticks -->
{#each gridLines as g} {#each gridLines as g (g.v)}
<line <line
x1={PAD.l} x1={PAD.l}
y1={g.gy} y1={g.gy}
@@ -254,7 +254,7 @@
/> />
<!-- Per-check dots; sold-out checks ringed in rose --> <!-- Per-check dots; sold-out checks ringed in rose -->
{#each coords as c, i} {#each coords as c, i (i)}
<circle <circle
cx={c.cx} cx={c.cx}
cy={c.cy} cy={c.cy}
+1 -1
View File
@@ -38,7 +38,7 @@
</div> </div>
<div class="grid gap-4 sm:grid-cols-3"> <div class="grid gap-4 sm:grid-cols-3">
{#each [['I', 'MAKE A LIST', 'group wants by topic'], ['II', 'PASTE A LINK', 'we track the price'], ['III', 'GET AN EMAIL', 'the moment it drops']] as [n, t, d]} {#each [['I', 'MAKE A LIST', 'group wants by topic'], ['II', 'PASTE A LINK', 'we track the price'], ['III', 'GET AN EMAIL', 'the moment it drops']] as [n, t, d] (n)}
<div class="panel p-5"> <div class="panel p-5">
<p class="gospel text-4xl">{n}</p> <p class="gospel text-4xl">{n}</p>
<p class="mt-1 font-display text-lg font-bold">{t}</p> <p class="mt-1 font-display text-lg font-bold">{t}</p>
+1 -1
View File
@@ -96,7 +96,7 @@
<div> <div>
<label class="label" for="loc">language</label> <label class="label" for="loc">language</label>
<select id="loc" class="field mt-1" bind:value={settings.locale}> <select id="loc" class="field mt-1" bind:value={settings.locale}>
{#each locales as l}<option value={l}>{l.toUpperCase()}</option>{/each} {#each locales as l (l)}<option value={l}>{l.toUpperCase()}</option>{/each}
</select> </select>
</div> </div>
<div> <div>