diff --git a/examples/basic/src/components/Seeker.tsx b/examples/basic/src/components/Seeker.tsx index 2ca7a280..a74122b0 100644 --- a/examples/basic/src/components/Seeker.tsx +++ b/examples/basic/src/components/Seeker.tsx @@ -99,7 +99,6 @@ const Seeker = ({ useEffect(() => { if (!isLoading && !seeking && !isUISeeking) { - console.log('update position from currentTime'); const percent = currentTime / duration; const position = seekerWidth * percent; updateSeekerPosition(position);