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() {
PROMO
-
- -

{{ selectedPromo.title }}

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' }}
- +