diff --git a/apps/user-app/app/page.tsx b/apps/user-app/app/page.tsx index e98cf1d..8289d43 100644 --- a/apps/user-app/app/page.tsx +++ b/apps/user-app/app/page.tsx @@ -2,6 +2,10 @@ import { getServerSession } from "next-auth"; import { redirect } from 'next/navigation' import { authOptions } from "./lib/auth"; + + + + export default async function Page() { const session = await getServerSession(authOptions); if (session?.user) {