fix(voice): robust accept-with-fetch + remote-end recording race + single-duration bubble + audio playback signals

This commit is contained in:
Tanmay Deep Sharma
2026-05-01 18:29:54 +07:00
parent 1abb51992b
commit d9077c64d3
5 changed files with 71 additions and 5 deletions
@@ -118,7 +118,13 @@ const bgColor = computed(() => BG_COLOR_MAP[status.value] || 'bg-n-teal-9');
{{ $t(labelKey) }}
</span>
<span class="text-xs text-n-slate-11">
{{ formattedDuration || $t(subtextKey) }}
<!-- When the audio chip is rendered it already shows duration in
its own player; suppress here to avoid two competing numbers. -->
{{
audioAttachment
? $t(subtextKey)
: formattedDuration || $t(subtextKey)
}}
</span>
</div>
</div>