From 4d39f4d3c8314f47f589254a4dd1fb4095587b1e Mon Sep 17 00:00:00 2001 From: Bauke Date: Wed, 20 Dec 2023 14:49:47 +0100 Subject: [PATCH] Add the Theme Switcher to the usesThemesList set. --- source/content-scripts/setup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/content-scripts/setup.tsx b/source/content-scripts/setup.tsx index 6739226..2465f1b 100644 --- a/source/content-scripts/setup.tsx +++ b/source/content-scripts/setup.tsx @@ -48,7 +48,7 @@ async function initialize() { // Similarly to the known groups, any features that use the list of themes // should be added here. - const usesThemesList = new Set([]); + const usesThemesList = new Set([Feature.ThemeSwitcher]); const themesList = await fromStorage(Data.ThemesList); const themesListUpdatedDate = await fromStorage(Data.ThemesListUpdatedDate);