chore: Fix broken zap selector application

This commit is contained in:
FlorianButz
2026-04-12 15:07:39 +02:00
parent 3e677ab956
commit bc36696150

View File

@@ -68,7 +68,7 @@ export class nsZenBoostStyles {
let zapBlocks = "";
if (boostData.zapSelectors) {
for (const selector of boostData.zapSelectors) {
zapBlocks += `html > body ${selector}:not([zen-zap-unhide]){ display: none !important; }\n`;
zapBlocks += `${selector}:not([zen-zap-unhide]){ display: none !important; }\n`;
}
if (zapBlocks != "") {