From 100b50003f9c5956a7046401e7a5732fa8d51dae Mon Sep 17 00:00:00 2001 From: Damir Date: Sat, 16 May 2026 02:58:06 +0300 Subject: [PATCH] 11 --- frontend/js/app.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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() {