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>
<!-- Out-of-stock spans — rose shade behind everything -->
{#each oosBands as b}
{#each oosBands as b (b.x)}
<rect
x={b.x}
y={PAD.t}
@@ -206,7 +206,7 @@
{/each}
<!-- Gridlines + price ticks -->
{#each gridLines as g}
{#each gridLines as g (g.v)}
<line
x1={PAD.l}
y1={g.gy}
@@ -254,7 +254,7 @@
/>
<!-- Per-check dots; sold-out checks ringed in rose -->
{#each coords as c, i}
{#each coords as c, i (i)}
<circle
cx={c.cx}
cy={c.cy}