diff --git a/web/src/components/AudioRenderers.tsx b/web/src/components/AudioRenderers.tsx index 355b1a4..2cf0df9 100644 --- a/web/src/components/AudioRenderers.tsx +++ b/web/src/components/AudioRenderers.tsx @@ -58,6 +58,8 @@ function RemoteAudioTrack({ participant, room }: { participant: Participant; roo export function AudioRenderers() { const room = useVoiceStore((s) => s._room); + // @ts-ignore ponytail: subscribe to trigger re-render when remote users join/leave + useVoiceStore((s) => s.participants); // @ts-ignore if (!room) return null;