Merge branch 'bugfix/9-player-schedule-tests': Player schedule clickable matches

This commit is contained in:
2026-05-01 18:24:13 -07:00
4 changed files with 112 additions and 13 deletions
+4 -3
View File
@@ -128,9 +128,10 @@ export default async function PlayerSchedulePage({ params }: PageProps) {
].filter(Boolean).join(" + ")
return (
<div
<Link
href={`/matches/${match.id}`}
key={match.id}
className="border border-gray-200 rounded-lg p-4 hover:bg-gray-50"
className="block border border-gray-200 rounded-lg p-4 hover:bg-gray-50 cursor-pointer"
>
<div className="flex justify-between items-center">
<div className="flex-1">
@@ -147,7 +148,7 @@ export default async function PlayerSchedulePage({ params }: PageProps) {
</span>
</div>
</div>
</div>
</Link>
)
})}
</div>