Fix warning on dynamic-styles init
This commit is contained in:
parent
21c064fc5b
commit
08d21e9b17
|
@ -154,7 +154,7 @@ export function initDynamicStyles() {
|
||||||
// Process all stylesheets on initial load
|
// Process all stylesheets on initial load
|
||||||
Array.from(document.styleSheets).forEach(sheet => {
|
Array.from(document.styleSheets).forEach(sheet => {
|
||||||
try {
|
try {
|
||||||
applyDynamicFocusStyles(sheet, { fromExtension: sheet.href.toLowerCase().includes('scripts/extensions') });
|
applyDynamicFocusStyles(sheet, { fromExtension: sheet.href?.toLowerCase().includes('scripts/extensions') == true });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn('Failed to process stylesheet on initial load:', e);
|
console.warn('Failed to process stylesheet on initial load:', e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue