()
| 958 | ); |
| 959 | |
| 960 | const totalDuration = () => |
| 961 | project.timeline?.segments.reduce( |
| 962 | (acc, s) => acc + (s.end - s.start) / s.timescale, |
| 963 | 0, |
| 964 | ) ?? props.editorInstance.recordingDuration; |
| 965 | |
| 966 | type State = { |
| 967 | zoom: number; |
no outgoing calls
no test coverage detected