feat: remove street from hotel address in sidebar

addresses #869bwq1vh
This commit is contained in:
Björn Fromme
2026-01-27 18:36:03 +01:00
parent e138fbeca8
commit 6365e4b24c
+1 -1
View File
@@ -189,7 +189,7 @@ class BookingSummaryDataService
}
$countryName = $this->countryDataProvider->get($hotel->country)?->name;
$parts = array_filter([$hotel->street, $hotel->city, $countryName]);
$parts = array_filter([$hotel->city, $countryName]);
return [] === $parts ? null : implode("\n", $parts);
}