diff --git a/src/components/supply/PropertyDetailView.tsx b/src/components/supply/PropertyDetailView.tsx index fc2e547..55e4dec 100644 --- a/src/components/supply/PropertyDetailView.tsx +++ b/src/components/supply/PropertyDetailView.tsx @@ -366,28 +366,24 @@ export function PropertyDetailView({ propertyId, onClose }: PropertyDetailViewPr )} - {/* Photo + Map — side by side, compact */} - {(property.images?.[0] || property.location.coordinates) && ( - - {property.images?.[0] && ( - - {property.title} - - )} - {property.location.coordinates && ( - - - - )} + {/* Photo + Map — stacked, compact */} + {property.images?.[0] && ( + + {property.title} + + )} + {property.location.coordinates && ( + + )}