From 1fe98d8a1aee0ffa3cba5f7aae005aff0d81aaff Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 2 Feb 2026 17:05:32 -0800 Subject: [PATCH] Fix double save when changing extension settings handleExtensionChange was calling handleFormChange() explicitly, but the change event also bubbles up to the form's onchange handler which calls handleFormChange() again - causing two saves per change. Now handleExtensionChange only calls checkCacheStatus() since the form's onchange already handles saving. --- src/lib/ConfigurePage.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/ConfigurePage.svelte b/src/lib/ConfigurePage.svelte index ba70760..8f51d0d 100644 --- a/src/lib/ConfigurePage.svelte +++ b/src/lib/ConfigurePage.svelte @@ -182,7 +182,6 @@ } function handleExtensionChange() { - handleFormChange(); checkCacheStatus(); }