feat: remove street from hotel address in sidebar

addresses #869bwq1vh
This commit is contained in:
Björn Fromme
2026-03-16 12:02:59 +01:00
parent 2754d734aa
commit e5803860df
+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);
}