Merge pull request #1570 from JosueGalRe/main

fix(zenThemes): themes not being updated in other windows
This commit is contained in:
mauro 🤙
2024-09-21 07:00:05 +02:00
committed by GitHub

View File

@@ -105,9 +105,9 @@ var gZenMarketplaceManager = {
console.log('[ZenThemeMarketplaceParent:settings]: Building themes list');
let themes = await ZenThemesCommon.getThemes();
const themes = await ZenThemesCommon.getThemes();
const browser = ZenThemesCommon.getBrowser();
const browser = ZenThemesCommon.currentBrowser;
const themeList = document.createElement('div');
@@ -791,5 +791,5 @@ Preferences.addAll([
id: 'zen.workspaces.show-icon-strip',
type: 'bool',
default: true,
}
},
]);