From c2c40b5b61a1f7af8d245ad04c27ba0ba0bca72d Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Wed, 13 May 2026 01:28:35 +0000 Subject: [PATCH] chore: generate --- packages/opencode/src/cli/cmd/tui/attention.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/opencode/src/cli/cmd/tui/attention.ts b/packages/opencode/src/cli/cmd/tui/attention.ts index 60bd97b977..f6480961dc 100644 --- a/packages/opencode/src/cli/cmd/tui/attention.ts +++ b/packages/opencode/src/cli/cmd/tui/attention.ts @@ -197,7 +197,8 @@ export function createTuiAttention(input: { const volume = soundVolume(request, input.config) const requestedSound = typeof request.sound === "object" ? request.sound : undefined const soundSkip = volume === undefined ? undefined : focusSkip(requestedSound?.when ?? "always", focus) - const soundName = requestedSound?.name && isAttentionSoundName(requestedSound.name) ? requestedSound.name : "default" + const soundName = + requestedSound?.name && isAttentionSoundName(requestedSound.name) ? requestedSound.name : "default" const sound = volume === undefined || soundSkip ? false : await playSound(soundName, volume) if (!notification && !sound) {