feat: Update Show page to link to Performance details instead of Song
This commit is contained in:
parent
532798db76
commit
5e123463f7
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ export default async function ShowDetailPage({ params }: { params: Promise<{ id:
|
|||
<span className="text-muted-foreground/60 w-6 text-right text-xs font-mono">{perf.position}.</span>
|
||||
<div className="font-medium flex items-center gap-2">
|
||||
<Link
|
||||
href={`/songs/${perf.song?.slug || perf.song?.id}`}
|
||||
href={`/performances/${perf.slug || perf.id}`}
|
||||
className="hover:text-primary hover:underline transition-colors"
|
||||
>
|
||||
{perf.song?.title || "Unknown Song"}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue