From 921413ca4daa2a5a7ecb4b77dcc405be6fce0f41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Padez?= Date: Tue, 21 Jul 2026 02:48:01 +0000 Subject: [PATCH] lower the task-completion chime volume to a quarter Co-Authored-By: Claude Opus 4.8 --- .../FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx b/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx index 7e4156d4..0d105e9f 100644 --- a/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx +++ b/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx @@ -22,8 +22,8 @@ const playDing = () => { const gain = ctx.createGain(); osc.type = 'sine'; osc.frequency.setValueAtTime(freq, t + start); - gain.gain.setValueAtTime(0.8, t + start); - gain.gain.setValueAtTime(0.8, t + start + dur * 0.6); + gain.gain.setValueAtTime(0.2, t + start); + gain.gain.setValueAtTime(0.2, t + start + dur * 0.6); gain.gain.exponentialRampToValueAtTime(0.001, t + start + dur); osc.connect(gain).connect(ctx.destination); osc.start(t + start);