mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 15:07:13 +01:00
more work on auth
This commit is contained in:
@@ -7,10 +7,8 @@ import '../styles/gfm.css'
|
||||
export default function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<div className="flex flex-col min-h-screen">
|
||||
<Layout>
|
||||
<Component {...pageProps} />
|
||||
<Analytics />
|
||||
</Layout>
|
||||
<Component {...pageProps} />
|
||||
<Analytics />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -17,11 +17,11 @@ function AdminRecentBookings({ bookings }) {
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Layout>
|
||||
{bookings.map((booking: any) => (
|
||||
<BookingTable key={booking.uuid} booking={booking} />
|
||||
))}
|
||||
</>
|
||||
</Layout>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user