From c4490831711fc97519fdb8ef80013826edb9de58 Mon Sep 17 00:00:00 2001
From: Hanzo_dev <2002samudiojohan@gmail.com>
Date: Wed, 25 Feb 2026 12:30:28 -0500
Subject: [PATCH] Fix: Shuttle UI and offer favorites removal
---
frontend/src/views/MapView.vue | 17 -----------------
frontend/src/views/TaxiView.vue | 19 +++----------------
2 files changed, 3 insertions(+), 33 deletions(-)
diff --git a/frontend/src/views/MapView.vue b/frontend/src/views/MapView.vue
index 86536f6..4083719 100644
--- a/frontend/src/views/MapView.vue
+++ b/frontend/src/views/MapView.vue
@@ -12,7 +12,6 @@ import { telemetryService } from "@/services/telemetryService";
import { analyticsService } from "@/services/analyticsService";
import BusStopInfoModal from "@/components/BusStopInfoModal.vue";
-import FavoriteButton from "@/components/FavoriteButton.vue";
import type { BusStop } from '@/types'
const router = useRouter();
@@ -1155,14 +1154,6 @@ function clearNavigation() {
-{{ currentPromo.discount_percentage }}%
-
-
-
@@ -1214,14 +1205,6 @@ function clearNavigation() {
diff --git a/frontend/src/views/TaxiView.vue b/frontend/src/views/TaxiView.vue
index ec2e41d..6df1685 100644
--- a/frontend/src/views/TaxiView.vue
+++ b/frontend/src/views/TaxiView.vue
@@ -288,7 +288,7 @@ function getShiftLabel(shift: string) {
:ref="el => setShuttleRef(el, shuttle.id)"
class="shuttle-card"
:class="{ expanded: expandedShuttleId === shuttle.id }"
- :style="{ backgroundImage: `url(${shuttle.image_url || 'https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&q=80&w=2069'})` }"
+ :style="{ backgroundImage: `url(${getImageUrl(shuttle.image_url)})` }"
@click="() => {
expandedShuttleId = expandedShuttleId === shuttle.id ? null : shuttle.id;
if (expandedShuttleId === shuttle.id) {
@@ -303,20 +303,7 @@ function getShiftLabel(shift: string) {
business
{{ shuttle.company_name }}
-
- $
- {{ shuttle.price_per_person }}
- /p
-
-
-
-
-
+
{{ shuttle.origin }}
@@ -333,7 +320,7 @@ function getShiftLabel(shift: string) {
{{ expandedShuttleId === shuttle.id ? 'expand_less' : 'expand_more' }}
-
+