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);