diff --git a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx index 00c738385..b8637b756 100644 --- a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx +++ b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx @@ -41,7 +41,7 @@ function DropdownAudioPlayer({ return { url: data.url, timestamp: data.timestamp, - start: startTs, + start: Math.max(0, startTs), }; }), [audioEvents.length, sessionStart]