From 1c7d91adfef3392e6bd42f205cae886a44e50aa9 Mon Sep 17 00:00:00 2001 From: VampireChicken12 Date: Fri, 13 Oct 2023 16:56:11 -0400 Subject: [PATCH] fix: forgot to hide overlay when time expires --- src/features/videoHistory/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/videoHistory/index.ts b/src/features/videoHistory/index.ts index 6c599089..a32e1427 100644 --- a/src/features/videoHistory/index.ts +++ b/src/features/videoHistory/index.ts @@ -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")) {