diff --git a/components/Home/Home.vue b/components/Home/Home.vue index 18ad49c22..c39cc8dae 100644 --- a/components/Home/Home.vue +++ b/components/Home/Home.vue @@ -585,7 +585,7 @@ export default defineNuxtComponent({ :poi="selectedFeature" class="tw-grow-0" :explorer-mode-enabled="explorerModeEnabled" - :favorites-mode-enabled="favoritesModeEnabled" + :favorites-mode-enabled="favoritesModeEnabled && selectedFeature.properties.internalType !== 'address'" @explore-click="toggleExploreAroundSelectedPoi" @favorite-click="toggleFavorite" @zoom-click="goToSelectedFeature" @@ -613,7 +613,7 @@ export default defineNuxtComponent({ :poi="selectedFeature" class="tw-grow-0 tw-text-left tw-h-full" :explorer-mode-enabled="explorerModeEnabled" - :favorites-mode-enabled="favoritesModeEnabled" + :favorites-mode-enabled="favoritesModeEnabled && selectedFeature.properties.internalType !== 'address'" @explore-click="toggleExploreAroundSelectedPoi" @favorite-click="toggleFavorite" @zoom-click="goToSelectedFeature" diff --git a/components/Search/Search.vue b/components/Search/Search.vue index 1d72a914c..d64aa0fbb 100644 --- a/components/Search/Search.vue +++ b/components/Search/Search.vue @@ -246,6 +246,7 @@ export default defineNuxtComponent({ type: 'Feature', geometry: feature.geometry, properties: { + internalType: 'address', metadata: { id: feature.properties.id as ApiPoiId, },