mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 07:31:14 -05:00
Fix: Standardize card fields for consistency
This commit is contained in:
@@ -81,10 +81,14 @@ export function ParkCard({ park }: ParkCardProps) {
|
||||
{park.name}
|
||||
</h3>
|
||||
|
||||
{park.location && <div className="flex items-center text-sm text-muted-foreground">
|
||||
<MapPin className="w-3 h-3 mr-1" />
|
||||
{park.location && (
|
||||
<div className="flex items-center gap-1 text-sm text-muted-foreground">
|
||||
<MapPin className="w-3 h-3" />
|
||||
<span className="truncate">
|
||||
{park.location.city && `${park.location.city}, `}{park.location.country}
|
||||
</div>}
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Park Type */}
|
||||
|
||||
Reference in New Issue
Block a user