diff --git a/apps/user-app/app/page.tsx b/apps/user-app/app/page.tsx index 0288eb02..9da33754 100644 --- a/apps/user-app/app/page.tsx +++ b/apps/user-app/app/page.tsx @@ -2,6 +2,12 @@ import { getServerSession } from "next-auth"; import { redirect } from 'next/navigation' import { authOptions } from "./lib/auth"; + +// Test For CI + + + + export default async function Page() { const session = await getServerSession(authOptions); if (session?.user) {