From 9637528a54ab469c89463a8718c2b23ac59d1d83 Mon Sep 17 00:00:00 2001 From: danidfra Date: Fri, 1 Nov 2024 11:58:59 -0300 Subject: [PATCH] Update video on mobile --- src/features/video/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/video/index.tsx b/src/features/video/index.tsx index 845c50dd5..e6cedd80a 100644 --- a/src/features/video/index.tsx +++ b/src/features/video/index.tsx @@ -469,7 +469,7 @@ const Video: React.FC = ({ }; const handleTogglePlay = () => { - if (!isMobile) togglePlay(); + if (!isMobile || paused || hovered) togglePlay(); }; const progress = (currentTime / duration) * 100;