mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
fix Link components with anchor
This commit is contained in:
@@ -27,8 +27,8 @@ export default function BookingTable({
|
||||
{
|
||||
name: 'Email',
|
||||
value: (
|
||||
<Link href={`mailto:${booking.email}`}>
|
||||
<a className="link">{booking.email}</a>
|
||||
<Link href={`mailto:${booking.email}`} className="link">
|
||||
{booking.email}
|
||||
</Link>
|
||||
),
|
||||
},
|
||||
@@ -42,8 +42,8 @@ export default function BookingTable({
|
||||
>
|
||||
<div className="px-4 py-5 sm:px-6">
|
||||
<h3 className="text-lg leading-6 font-medium text-gray-900">
|
||||
<Link href={`/admin/bookings/${booking.uuid}`}>
|
||||
<a className="link">Booking {booking.uuid}</a>
|
||||
<Link href={`/admin/bookings/${booking.uuid}`} className="link">
|
||||
Booking {booking.uuid}
|
||||
</Link>
|
||||
</h3>
|
||||
<p className="mt-1 max-w-2xl text-sm text-gray-500">
|
||||
|
||||
Reference in New Issue
Block a user