style: auto-fix linting issues

This commit is contained in:
JulienMaille 2026-02-12 13:55:36 +00:00 committed by github-actions[bot]
parent cafa97cb0f
commit 64a9171f79
2 changed files with 6 additions and 8 deletions

View file

@ -1,10 +1,8 @@
// js/desktop/neutralino-bridge.js // js/desktop/neutralino-bridge.js
const isNeutralino = typeof window !== 'undefined' && ( const isNeutralino =
window.NL_MODE || typeof window !== 'undefined' &&
window.location.search.includes('mode=neutralino') || (window.NL_MODE || window.location.search.includes('mode=neutralino') || window.parent !== window);
(window.parent !== window)
);
const listeners = new Map(); const listeners = new Map();