fix(admin): nav issues and blank screens fix

This commit is contained in:
2026-02-26 16:20:59 -05:00
parent 10cb37c866
commit 34a73f0f94
8 changed files with 57 additions and 15 deletions

View File

@ -65,7 +65,8 @@ onMounted(loadStops)
async function loadStops() {
isLoading.value = true
try {
stops.value = await busStopsService.getAllBusStops()
const data = await busStopsService.getAllBusStops()
stops.value = data || []
} catch (e) {
error.value = 'Error al cargar las paradas'
} finally {