From e0fe762c80956c7f704e9ffb9efec88357f1ffa5 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Thu, 22 Dec 2022 22:48:46 +0100 Subject: [PATCH] fix Link components with anchor --- components/bookingTable.tsx | 8 +++---- components/footer.tsx | 12 ++++------ components/header.tsx | 4 +--- components/navigation.tsx | 4 +--- pages/admin/bookings/[uuid]/index.tsx | 4 ++-- pages/bookings/[uuid]/stored.tsx | 4 ++-- pages/index.tsx | 34 ++++++++++++--------------- 7 files changed, 30 insertions(+), 40 deletions(-) diff --git a/components/bookingTable.tsx b/components/bookingTable.tsx index 3f9e025..cf01be4 100644 --- a/components/bookingTable.tsx +++ b/components/bookingTable.tsx @@ -27,8 +27,8 @@ export default function BookingTable({ { name: 'Email', value: ( - - {booking.email} + + {booking.email} ), }, @@ -42,8 +42,8 @@ export default function BookingTable({ >

- - Booking {booking.uuid} + + Booking {booking.uuid}

diff --git a/components/footer.tsx b/components/footer.tsx index ef7da38..87519a9 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -7,21 +7,19 @@ export default function Footer() {