Skip to content

Commit

Permalink
fix: forgot to hide overlay when time expires
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireChicken12 committed Oct 13, 2023
1 parent 73ef6e1 commit 1c7d91a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/features/videoHistory/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export async function promptUserToResumeVideo() {
// Automatically hide the prompt when the countdown reaches 0
clearInterval(countdownInterval);
prompt.style.display = "none";
overlay.style.display = "none";
}
}, 1000);
if (!document.getElementById("resume-prompt-progress-bar")) {
Expand Down

0 comments on commit 1c7d91a

Please sign in to comment.