chore: build and UI fixes

This commit is contained in:
2026-02-26 20:58:10 -05:00
parent 34a73f0f94
commit 1f0229461b
10 changed files with 17 additions and 18 deletions

View File

@ -4,10 +4,8 @@ import { useRouter } from 'vue-router'
import { useRouteStore } from '@/stores/route'
import { useTaxiStore } from '@/stores/taxi'
import { analyticsService } from '@/services/analyticsService'
import { useI18n } from 'vue-i18n'
import FavoriteButton from '@/components/FavoriteButton.vue'
const { t } = useI18n()
const router = useRouter()
const routeStore = useRouteStore()
const taxiStore = useTaxiStore()
@ -59,10 +57,7 @@ const correlimientos = computed(() => {
return Array.from(set).sort()
})
const getStatusClass = (status: string) => {
if (status === 'ACTIVE') return 'bg-emerald-100 dark:bg-emerald-900/30 text-emerald-700 dark:text-emerald-400'
return 'bg-slate-100 dark:bg-zinc-800 text-slate-500 dark:text-zinc-400'
}
</script>
<template>