fix(voice): activity tab rendered a permanently empty chart

VoiceActivityTimeline was never given a data prop — the Activity tab always
showed an empty Recharts bar chart while the connection tab already had live
speaker state. Replace the dead chart with a live speaker/activity list fed
from the same WebSocket data, so the tab reflects real state instead of
misleading empty bars.
This commit is contained in:
asepharyana
2026-08-02 10:38:02 +07:00
parent 25f6609a9f
commit ef4281cd1f
2 changed files with 66 additions and 59 deletions
@@ -148,7 +148,7 @@ export default function VoicePage() {
</div>
)}
{tab === "activity" && <VoiceActivityTimeline />}
{tab === "activity" && <VoiceActivityTimeline data={speakers} />}
</div>
);
}