From 2a64499ba9e9da0ae69d50490a9513c37a614c35 Mon Sep 17 00:00:00 2001 From: Ajay Date: Sun, 27 Mar 2022 18:45:21 -0400 Subject: [PATCH] Fix error --- src/content.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content.ts b/src/content.ts index 3eb4a78d..1cfd8669 100644 --- a/src/content.ts +++ b/src/content.ts @@ -90,7 +90,7 @@ let skipButtonControlBar: SkipButtonControlBar = null; let categoryPill: CategoryPill = null; /** Element containing the player controls on the YouTube player. */ -let controls: HTMLElement | null = null; +const controls: HTMLElement | null = null; /** Contains buttons created by `createButton()`. */ const playerButtons: Record = {};