mobile support for client review player2
Deploy / deploy (push) Successful in 2m31s

This commit is contained in:
twotalesanimation
2026-06-12 09:33:54 +02:00
parent 289e0c367a
commit 72ce7af1ec
3 changed files with 244 additions and 156 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ export function FrameTimeline({ fps, comments, annotations = [], videoRef, onSee
// ── Touch scrubbing ──────────────────────────────────────────────────────
const getFrameFromTouch = useCallback(
(touch: Touch): number => {
(touch: { clientX: number }): number => {
const canvas = canvasRef.current;
if (!canvas || totalFrames === 0) return 0;
const rect = canvas.getBoundingClientRect();