diff --git a/packages/app/src/SessionEventList.tsx b/packages/app/src/SessionEventList.tsx index 46de948df..3c1e8c2e4 100644 --- a/packages/app/src/SessionEventList.tsx +++ b/packages/app/src/SessionEventList.tsx @@ -225,7 +225,7 @@ export const SessionEventList = ({ // Sync scroll position to the DOM Player time const currentEventIndex = useThrottledValue( - rows.findIndex(row => row.timestamp.getTime() >= (focus?.ts ?? 0)) - 1, + rows.findIndex(row => row.timestamp.getTime() >= (focus?.ts ?? 0)), 500, );