Fix camera with -

This commit is contained in:
Nicolas Mowen 2024-03-22 07:12:08 -06:00
parent df6c3b14dd
commit 99232ce200

View File

@ -352,7 +352,8 @@ function PreviewFramesPlayer({
} }
return previewFrames.map((frame) => return previewFrames.map((frame) =>
parseFloat(frame.split("-")[1].slice(undefined, -5)), // @ts-expect-error we know this item will exist
parseFloat(frame.split("-").slice(undefined, -5)),
); );
}, [previewFrames]); }, [previewFrames]);