From 006ba8472c414e74afa47ce027084e824411e2a1 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 2 Feb 2026 17:07:11 -0800 Subject: [PATCH] Fix double save when changing extension settings (#19) 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(); }