Merge branch 'bugfix/9-player-schedule-tests': Player schedule clickable matches
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user