Fix: Shuttle UI and offer favorites removal
This commit is contained in:
@ -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() {
|
||||
<span v-if="currentPromo.discount_percentage" class="sheet-discount">
|
||||
-{{ currentPromo.discount_percentage }}%
|
||||
</span>
|
||||
<div class="sheet-fav-pos" @click.stop>
|
||||
<FavoriteButton
|
||||
item-type="coupon"
|
||||
:item-id="currentPromo.id"
|
||||
:item-name="currentPromo.title"
|
||||
:item-image="currentPromo.image_url || undefined"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Info -->
|
||||
@ -1214,14 +1205,6 @@ function clearNavigation() {
|
||||
<div class="promo-header-modal">
|
||||
<img :src="getImageUrl(selectedPromo.image_url)" class="promo-img-modal" />
|
||||
<div class="promo-badge-modal">PROMO</div>
|
||||
<div class="promo-modal-fav">
|
||||
<FavoriteButton
|
||||
item-type="coupon"
|
||||
:item-id="selectedPromo.id"
|
||||
:item-name="selectedPromo.title"
|
||||
:item-image="selectedPromo.image_url || undefined"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="promo-body-modal">
|
||||
<h2 class="promo-title-modal">{{ selectedPromo.title }}</h2>
|
||||
|
||||
Reference in New Issue
Block a user