more work on auth

This commit is contained in:
Thomas Ruoff
2024-09-12 23:25:34 +02:00
parent 9f80ca4b1b
commit 219881810d
4 changed files with 45 additions and 35 deletions

View File

@@ -17,11 +17,11 @@ function AdminRecentBookings({ bookings }) {
}
return (
<>
<Layout>
{bookings.map((booking: any) => (
<BookingTable key={booking.uuid} booking={booking} />
))}
</>
</Layout>
)
}