From 129be78c9bf1b9d378050c6ca6ec722ef456c4ee Mon Sep 17 00:00:00 2001 From: Kuuuube <61125188+Kuuuube@users.noreply.github.com> Date: Tue, 18 Jun 2024 14:00:44 -0400 Subject: Fix incorrect switch arm (#1084) --- ext/js/app/theme-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/js/app/theme-controller.js b/ext/js/app/theme-controller.js index 3d4f8269..c12f1113 100644 --- a/ext/js/app/theme-controller.js +++ b/ext/js/app/theme-controller.js @@ -171,7 +171,7 @@ export class ThemeController { */ _resolveThemeValue(theme, computedSiteTheme) { switch (theme) { - case 'auto': return computedSiteTheme; + case 'site': return computedSiteTheme; case 'browser': return this._browserTheme; default: return theme; } -- cgit v1.2.3