From 82ae48776560825e9c72607a902a5438e749b558 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:50:41 +0200 Subject: [PATCH] feat(sounds): add 'Play sound for every message' toggle to Voice settings --- .../components/modals/settingsPanels/VoicePanel.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/web/src/components/modals/settingsPanels/VoicePanel.tsx b/packages/web/src/components/modals/settingsPanels/VoicePanel.tsx index ad8c606e..3c42533f 100644 --- a/packages/web/src/components/modals/settingsPanels/VoicePanel.tsx +++ b/packages/web/src/components/modals/settingsPanels/VoicePanel.tsx @@ -11,6 +11,8 @@ export function VoicePanel() { const setRnnoiseEnabled = useVoiceStore((s) => s.setRnnoiseEnabled); const soundEffectVolume = useVoiceStore((s) => s.soundEffectVolume); const setSoundEffectVolume = useVoiceStore((s) => s.setSoundEffectVolume); + const messageSoundAllChannels = useVoiceStore((s) => s.messageSoundAllChannels); + const setMessageSoundAllChannels = useVoiceStore((s) => s.setMessageSoundAllChannels); return (
@@ -37,6 +39,15 @@ export function VoicePanel() { }} />
+
+
+
Play sound for every message
+
+ Off (default): only DMs and messages that mention you. On: every channel. +
+
+ +