Files
web/app/[lang]/(live)/(protected)/bypass/page.tsx
Michael Zetterberg 0a862ca770 chore(debug): auth
2024-05-14 16:32:17 +02:00

8 lines
161 B
TypeScript

import { auth } from "@/auth"
export default async function ByPass() {
const session = await auth()
return <pre>{JSON.stringify(session, null, 2)}</pre>
}