web/SmallDialog: delay error haptics by 150ms

This commit is contained in:
wukko 2025-04-30 23:56:25 +06:00
parent a20d375c51
commit a1e20ccc3e
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -25,7 +25,9 @@
// error meowbalt art is not used in dialogs unless it's an error
if (meowbalt === "error") {
hapticError();
setTimeout(() => {
hapticError();
}, 150)
}
</script>