From 41a8a75cb0c35b319662919728d06db9fe5d9e09 Mon Sep 17 00:00:00 2001 From: JulienMaille <182520+JulienMaille@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:20:48 +0000 Subject: [PATCH] style: auto-fix linting issues --- public/neutralino_loader.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/public/neutralino_loader.html b/public/neutralino_loader.html index 74bdc4a..5bfe527 100644 --- a/public/neutralino_loader.html +++ b/public/neutralino_loader.html @@ -45,15 +45,19 @@ menuItems: [ { id: 'show', text: 'Show Monochrome' }, { id: 'sep', text: '-' }, - { id: 'quit', text: 'Quit' } - ] + { id: 'quit', text: 'Quit' }, + ], }; try { await Neutralino.os.setTray(tray); console.log('[Shell] Tray set successfully'); - } catch(e) { + } catch (e) { console.error('[Shell] Tray error:', e); - await Neutralino.os.showMessageBox('Tray Error', `Failed to set tray: ${JSON.stringify(e)}`, 'ERROR'); + await Neutralino.os.showMessageBox( + 'Tray Error', + `Failed to set tray: ${JSON.stringify(e)}`, + 'ERROR' + ); } }; @@ -71,7 +75,6 @@ break; } }); - } catch (e) { console.error('[Shell] Failed to init Neutralino:', e); }