fix: restore VoiceControls and chat split-view in DM calls

VoiceControls was gated on server-only `currentVoiceChannelId`, now also
triggers on `activeDmCall`. Added VoiceChatPanel to DM call view matching
the server voice channel pattern.
This commit is contained in:
Jannis Braun
2026-02-23 21:49:06 +01:00
parent e9ec61db43
commit 628d417723
2 changed files with 6 additions and 2 deletions
@@ -112,6 +112,9 @@ export function MainContent() {
<div className="flex-1 flex overflow-hidden pb-20">
<VoiceGrid participants={participants} />
{voiceChatOpen && !voiceFullscreen && (
<VoiceChatPanel channelId={currentChannelId} channelName={`@${dmName}`} />
)}
</div>
<VoiceControlBar />