From 0e0da3b1e9985c156451326ee5000fd22a6e4a79 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Wed, 1 Apr 2026 20:43:15 +0530 Subject: [PATCH] chore: Reduce Error debounce interval --- src/lib/components/Editor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Editor.svelte b/src/lib/components/Editor.svelte index 5f90fa08..9c28ec18 100644 --- a/src/lib/components/Editor.svelte +++ b/src/lib/components/Editor.svelte @@ -24,7 +24,7 @@ const showErrorDebounced = debounce(() => { showError = true; - }, 5000); + }, 3000); $effect(() => { if ($stateStore.error) {