From 478b24e62797615a1048ac0538934c311cdce596 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Fri, 22 Mar 2024 23:14:51 -0400 Subject: [PATCH] Tweak shouldShowNextEpisodeButton percentage --- src/components/player/atoms/NextEpisodeButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/player/atoms/NextEpisodeButton.tsx b/src/components/player/atoms/NextEpisodeButton.tsx index b5f6548a..3d760900 100644 --- a/src/components/player/atoms/NextEpisodeButton.tsx +++ b/src/components/player/atoms/NextEpisodeButton.tsx @@ -15,7 +15,7 @@ function shouldShowNextEpisodeButton( const percentage = time / duration; const secondsFromEnd = duration - time; if (secondsFromEnd <= 30) return "always"; - if (percentage >= 0.94) return "hover"; + if (percentage >= 0.93) return "hover"; return "none"; }