From 73819eb49feb099172e7ba5ed497f41c787f199b Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Thu, 18 Jun 2026 01:45:38 +0200 Subject: [PATCH] fixed warnings --- frontend/src/lib/PriceChart.svelte | 6 +++--- frontend/src/routes/+page.svelte | 2 +- frontend/src/routes/settings/+page.svelte | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/lib/PriceChart.svelte b/frontend/src/lib/PriceChart.svelte index ca78170..2657ef4 100644 --- a/frontend/src/lib/PriceChart.svelte +++ b/frontend/src/lib/PriceChart.svelte @@ -194,7 +194,7 @@ - {#each oosBands as b} + {#each oosBands as b (b.x)} - {#each gridLines as g} + {#each gridLines as g (g.v)} - {#each coords as c, i} + {#each coords as c, i (i)}
- {#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)}

{n}

{t}

diff --git a/frontend/src/routes/settings/+page.svelte b/frontend/src/routes/settings/+page.svelte index baeb40a..c765b6f 100644 --- a/frontend/src/routes/settings/+page.svelte +++ b/frontend/src/routes/settings/+page.svelte @@ -96,7 +96,7 @@