fixed theme buttons not showing up if user has favorites

This commit is contained in:
Miodec 2023-01-28 19:50:03 +01:00
parent bc4651d2b7
commit 4cc8ed5e91

View file

@ -217,7 +217,7 @@ export async function refreshButtons(): Promise<void> {
//then the rest
for (const theme of themes) {
if (Config.favThemes.includes(theme.name)) {
return;
continue;
}
const activeTheme = activeThemeName === theme.name ? "active" : "";