diff --git a/src/containers/internal/views/recent-calls/player.tsx b/src/containers/internal/views/recent-calls/player.tsx index c70ff21..e81d44d 100644 --- a/src/containers/internal/views/recent-calls/player.tsx +++ b/src/containers/internal/views/recent-calls/player.tsx @@ -266,7 +266,7 @@ export const Player = ({ call }: PlayerProps) => { const [ttsCache] = getSpanAttributeByName(s.attributes, "tts.cached"); const [streamLatency] = getSpanAttributeByName( s.attributes, - "tts_time_to_first_byte_ms" + "time_to_first_byte_ms" ); if (streamLatency && streamLatency.value.stringValue) { end = start + Number(streamLatency.value.stringValue) / 1_000;