(wall: number)
| 92 | // recording's end (anchored back into session time). |
| 93 | const acts = useMemo<Act[]>(() => { |
| 94 | const toSession = (wall: number) => (wall - sessionStart) / 1000; |
| 95 | return timeline.focus.map((entry, index) => { |
| 96 | const next = timeline.focus[index + 1]; |
| 97 | let to = Infinity; |