From e944594e06b6b9eeecdf9d6b536e73150f0124a4 Mon Sep 17 00:00:00 2001 From: "kevinguevaradevia@gmail.com" Date: Tue, 2 Jun 2026 23:57:44 -0500 Subject: [PATCH] fix: Add missing useState import in MediaVideo --- src/engine/components/MediaVideo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/components/MediaVideo.tsx b/src/engine/components/MediaVideo.tsx index e7dc335..cbc4e1e 100644 --- a/src/engine/components/MediaVideo.tsx +++ b/src/engine/components/MediaVideo.tsx @@ -13,7 +13,7 @@ * and only seek when drift exceeds a threshold. This prevents audio glitching * caused by constantly setting currentTime on every frame. */ -import React, { useRef, useEffect } from 'react'; +import React, { useRef, useEffect, useState } from 'react'; import { useCurrentFrame } from '../player/useCurrentFrame'; import { useVideoConfig } from '../player/useVideoConfig'; import { usePlayerState } from '../player/PlayerContext';