aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(landing)/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/(landing)/page.tsx')
-rw-r--r--apps/web/app/(landing)/page.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/app/(landing)/page.tsx b/apps/web/app/(landing)/page.tsx
index 562e9af9..5f8b28b4 100644
--- a/apps/web/app/(landing)/page.tsx
+++ b/apps/web/app/(landing)/page.tsx
@@ -5,7 +5,7 @@ import Cta from "./Cta";
import { Toaster } from "@repo/ui/shadcn/toaster";
import Features from "./Features";
import Footer from "./footer";
-import { auth } from "../helpers/server/auth";
+import { auth } from "../../server/auth";
import { redirect } from "next/navigation";
export const runtime = "edge";
@@ -16,7 +16,7 @@ export default async function Home() {
console.log(user);
if (user) {
- // await redirect("/home")
+ await redirect("/home");
}
return (