From a1e20ccc3e8154c5c490e913fac566479022e1f8 Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 30 Apr 2025 23:56:25 +0600 Subject: [PATCH] web/SmallDialog: delay error haptics by 150ms --- web/src/components/dialog/SmallDialog.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/components/dialog/SmallDialog.svelte b/web/src/components/dialog/SmallDialog.svelte index dee9e051..47596109 100644 --- a/web/src/components/dialog/SmallDialog.svelte +++ b/web/src/components/dialog/SmallDialog.svelte @@ -25,7 +25,9 @@ // error meowbalt art is not used in dialogs unless it's an error if (meowbalt === "error") { - hapticError(); + setTimeout(() => { + hapticError(); + }, 150) }