From 40e89e4646534263091a4a277518913da5770892 Mon Sep 17 00:00:00 2001 From: David Regla Date: Tue, 22 Nov 2022 04:58:19 -0600 Subject: [PATCH] fix: sort deps Separate groups of third party and local imports --- cli/template/addons/next-auth/get-server-auth-session.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/template/addons/next-auth/get-server-auth-session.ts b/cli/template/addons/next-auth/get-server-auth-session.ts index 8323ff2886..b2b90ed976 100644 --- a/cli/template/addons/next-auth/get-server-auth-session.ts +++ b/cli/template/addons/next-auth/get-server-auth-session.ts @@ -1,5 +1,6 @@ import { type GetServerSidePropsContext } from "next"; import { unstable_getServerSession } from "next-auth"; + import { authOptions } from "../../pages/api/auth/[...nextauth]"; /**