fix: custom sound playback, unmark, editor click-to-edit, bigger fonts
Deploy / build-and-deploy (push) Successful in 1m41s

This commit is contained in:
2026-06-14 22:29:50 +03:00
parent b34a009eb0
commit 610cbbec0f
4 changed files with 181 additions and 88 deletions
+1
View File
@@ -110,6 +110,7 @@ export function playChaosRiser() {
export function playSoundUrl(url: string) {
try {
const audio = new Audio(url);
audio.preload = "auto";
audio.volume = 0.4;
audio.play().catch(() => {});
} catch {}