Merge remote-tracking branch 'origin/main' into fix-media-galerry-warning

fix-build-warnings
danidfra 2024-11-02 19:28:45 -03:00
commit 19f91c72ec
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -469,7 +469,7 @@ const Video: React.FC<IVideo> = ({
}; };
const handleTogglePlay = () => { const handleTogglePlay = () => {
if (!isMobile) togglePlay(); if (!isMobile || paused || hovered) togglePlay();
}; };
const progress = (currentTime / duration) * 100; const progress = (currentTime / duration) * 100;