diff --git a/src/Service/BookingSummaryDataService.php b/src/Service/BookingSummaryDataService.php index 3d25635..ceac599 100644 --- a/src/Service/BookingSummaryDataService.php +++ b/src/Service/BookingSummaryDataService.php @@ -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); }