From ebb48f4f8befe47010f36479596f03557e290b14 Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Sat, 11 Apr 2026 22:38:25 +0200 Subject: [PATCH] Fix: Remove themes from the theme order array --- app/themeManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/themeManager.js b/app/themeManager.js index c1502a9..51acd5a 100644 --- a/app/themeManager.js +++ b/app/themeManager.js @@ -7,7 +7,7 @@ const MAX_IMAGE_SIZE = 10 * 1024 * 1024; const ALLOWED_IMAGE_EXTENSIONS = [".jpg", ".jpeg", ".png", ".webp", ".gif", ".avif"]; const ALLOWED_IMAGE_NAMES = ["cover", "background"]; -const THEME_ORDER = ["dark", "light", "neon", "fnatic", "chirac", "drift", "nf", "songbird", "spicyfire"]; +const THEME_ORDER = ["dark", "light"]; const REQUIRED_KEYS = [ ["meta", "name"],