diff --git a/web_interface/static/v3/js/app-early.js b/web_interface/static/v3/js/app-early.js index 7eff0307..2f95db38 100644 --- a/web_interface/static/v3/js/app-early.js +++ b/web_interface/static/v3/js/app-early.js @@ -322,7 +322,7 @@ } // Clear existing plugin tabs (except Plugin Manager) - existingTabs.forEach(tab => tab.remove()); + existingTabs.forEach(tab => { tab.remove(); }); debugLog('[STUB] updatePluginTabs: Cleared', existingTabs.length, 'existing tabs'); // Add tabs for each installed plugin diff --git a/web_interface/static/v3/js/htmx-config.js b/web_interface/static/v3/js/htmx-config.js index 23a3c8fd..731ce69c 100644 --- a/web_interface/static/v3/js/htmx-config.js +++ b/web_interface/static/v3/js/htmx-config.js @@ -182,11 +182,11 @@ (document.head || document.body).appendChild(newScript); } } - } catch (e) { + } catch { // Silently ignore script execution errors } }); - } catch (e) { + } catch { // Silently ignore errors in script processing } }