fix recordings check

This commit is contained in:
Josh Hawkins 2025-05-19 08:42:28 -05:00
parent 717517aeb5
commit 14e9b66e98

View File

@ -203,7 +203,7 @@ export default function DynamicVideoPlayer({
* that the segment has. * that the segment has.
*/ */
const inpointOffset = useMemo(() => { const inpointOffset = useMemo(() => {
if (!recordingParams || !recordings) { if (!recordingParams || !recordings || recordings?.length === 0) {
return 0; return 0;
} }