diff --git a/frontend/js/app.js b/frontend/js/app.js index 9b75250..28032ea 100644 --- a/frontend/js/app.js +++ b/frontend/js/app.js @@ -142,11 +142,11 @@ function showApp() { document.getElementById('auth-section').classList.add('hidden'); document.getElementById('main-app').classList.remove('hidden'); document.getElementById('user-info').classList.remove('hidden'); - initTabs(); - initCases(); - initIntegrations(); - initBilling(); - initDashboard(); + try { initTabs(); } catch(e) { console.error('initTabs:', e); } + try { initCases(); } catch(e) { console.error('initCases:', e); } + try { loadIntegrations(); } catch(e) { console.error('loadIntegrations:', e); } + try { initBilling(); } catch(e) { console.error('initBilling:', e); } + try { initDashboard(); } catch(e) { console.error('initDashboard:', e); } } function initDashboard() {