diff --git a/app/components/page/CatalogPage.vue b/app/components/page/CatalogPage.vue
index 0e0e54e..6bdd001 100644
--- a/app/components/page/CatalogPage.vue
+++ b/app/components/page/CatalogPage.vue
@@ -47,7 +47,7 @@
-
+
[
- { key: 'all', label: t('ordersList.filters.all') },
- { key: 'pending', label: t('ordersList.filters.pending') },
- { key: 'processing', label: t('ordersList.filters.processing') },
- { key: 'in_transit', label: t('ordersList.filters.in_transit') },
- { key: 'delivered', label: t('ordersList.filters.delivered') }
+ { id: 'all', label: t('ordersList.filters.all') },
+ { id: 'pending', label: t('ordersList.filters.pending') },
+ { id: 'processing', label: t('ordersList.filters.processing') },
+ { id: 'in_transit', label: t('ordersList.filters.in_transit') },
+ { id: 'delivered', label: t('ordersList.filters.delivered') }
])
const selectedFilter = ref('all')
diff --git a/app/pages/catalog/offers/index.vue b/app/pages/catalog/offers/index.vue
index c3cd012..aaf8a3e 100644
--- a/app/pages/catalog/offers/index.vue
+++ b/app/pages/catalog/offers/index.vue
@@ -1,6 +1,6 @@
items.value.map(offer => ({
+ ...offer,
+ latitude: offer.locationLatitude,
+ longitude: offer.locationLongitude
+})))
+
// Product filter options
const productFilters = computed(() => {
const all = [{ id: 'all', label: t('catalogOffersSection.filters.all_products') }]
diff --git a/app/pages/select-location/index.vue b/app/pages/select-location/index.vue
index bf32c5d..8268caa 100644
--- a/app/pages/select-location/index.vue
+++ b/app/pages/select-location/index.vue
@@ -1,86 +1,78 @@
-
-
-
-
-
-
-
-
-
-
- {{ t('profileAddresses.header.title') }}
-
-
-
-
-
- {{ addr.name }}
- Default
-
- {{ addr.address }}
-
-
-
-
-
-
+
+
- {{ t('catalogMap.hubsTab') }}
-
-
-
-
-
-
-
-
-
-
-
+
+
+ {{ t('common.selectLocation') }}
+
-
+
+
+ {{ t('profileAddresses.header.title') }}
+
+
+
+
+
+ {{ addr.name }}
+ Default
+
+ {{ addr.address }}
+
+
+
+
-
-
-
-
-
-
-
+
+
{{ t('catalogMap.hubsTab') }}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+