fix: video blink when toggling mic mute in calls

This commit is contained in:
2026-05-19 22:42:56 +05:30
parent 6267e52bdf
commit 1ebeefd900
3 changed files with 15 additions and 9 deletions
+3 -1
View File
@@ -6,11 +6,13 @@ export type VoiceSession = {
url: string
h: string
room: LiveKitRoom
muted: boolean
cameraOn: boolean
screenShareOn: boolean
}
/** Mic mute state is separate so toggling it does not re-render video tiles. */
export const voiceMicMuted = writable(true)
export type Pubkey = string
export type VoiceParticipant = {pubkey?: Pubkey; identity: string}