fix(frontend): Update show detail title format to Date - Venue, Location
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-21 01:21:07 -08:00
parent c4905d7470
commit d11f078d3e

View file

@ -44,6 +44,11 @@ export default async function ShowDetailPage({ params }: { params: Promise<{ id:
<div>
<h1 className="text-3xl font-bold tracking-tight">
{new Date(show.date).toLocaleDateString()}
{show.venue && (
<span className="font-normal text-muted-foreground ml-2">
- {show.venue.name}, {show.venue.city}, {show.venue.state}
</span>
)}
</h1>
{show.tags && show.tags.length > 0 && (
<div className="flex flex-wrap gap-2 mt-1">