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