From e5803860dffd40e7c1bb510b54b74abbee9b83d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Tue, 27 Jan 2026 18:36:03 +0100 Subject: [PATCH] feat: remove street from hotel address in sidebar addresses #869bwq1vh --- src/Service/BookingSummaryDataService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }