From 97b729c5d4110148da6de4b4d8014644c4b63505 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 26 Oct 2024 19:48:48 +1000 Subject: [PATCH] Fix another non reactive property warning I waited for the PR check to pass first, but it failed to catch this, presumably as newly-added files don't trigger the existing checks to re-run. --- ts/routes/deck-options/EasyDays.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/routes/deck-options/EasyDays.svelte b/ts/routes/deck-options/EasyDays.svelte index 7ca4fdf56..c87c6aba8 100644 --- a/ts/routes/deck-options/EasyDays.svelte +++ b/ts/routes/deck-options/EasyDays.svelte @@ -15,6 +15,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html const config = state.currentConfig; const defaults = state.defaults; + // svelte-ignore reactive_declaration_non_reactive_property $: if ($config.easyDaysPercentages.length !== 7) { $config.easyDaysPercentages = defaults.easyDaysPercentages; }