From 5bbcbcf0c6371c13fba641d3fcd1ed6ee2ddf4be Mon Sep 17 00:00:00 2001 From: Michael Edgar Date: Fri, 15 Nov 2024 07:13:28 -0500 Subject: [PATCH] Fix getAuthOptions import broken in re-base Signed-off-by: Michael Edgar --- ui/app/[locale]/(public)/(home)/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/[locale]/(public)/(home)/page.tsx b/ui/app/[locale]/(public)/(home)/page.tsx index 4fac05a9b..09aa41d77 100644 --- a/ui/app/[locale]/(public)/(home)/page.tsx +++ b/ui/app/[locale]/(public)/(home)/page.tsx @@ -32,7 +32,7 @@ import { Suspense } from "react"; import styles from "./home.module.css"; import config from '@/utils/config'; import { logger } from "@/utils/logger"; -import { getAuthOptions } from "@/app/api/auth/[...nextauth]/route"; +import { getAuthOptions } from "@/app/api/auth/[...nextauth]/auth-options"; import { getServerSession } from "next-auth"; const log = logger.child({ module: "home" });