} catch (dashboardError) {
console.error('❌ Failed to load dashboard:', dashboardError);
showErrorUI(
'Failed to load dashboard module',
dashboardError.message + '\n\n' + dashboardError.stack
);
}
} catch (error) {
console.error('🔴 Auth check failed:', error);
showErrorUI(
'Authentication failed: ' + error.message,
error.stack
);
}
})();