From a604cd750a4429596808908f8a505fd1911989ff Mon Sep 17 00:00:00 2001 From: Olivier Bouillet <62574056+freeboub@users.noreply.github.com> Date: Fri, 31 May 2024 23:32:20 +0200 Subject: [PATCH] chore(sample): clean log in sample (#3868) --- examples/basic/src/components/Seeker.tsx | 1 - 1 file changed, 1 deletion(-) 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);