From dfe8f58c166fe50888ff0d548af267fc7260ed73 Mon Sep 17 00:00:00 2001 From: Henry Li Date: Sat, 17 Jan 2026 00:13:24 +0800 Subject: [PATCH] style: format --- frontend/src/server/better-auth/server.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/server/better-auth/server.ts b/frontend/src/server/better-auth/server.ts index e760c1e..064cd34 100644 --- a/frontend/src/server/better-auth/server.ts +++ b/frontend/src/server/better-auth/server.ts @@ -1,7 +1,8 @@ -import { auth } from "."; import { headers } from "next/headers"; import { cache } from "react"; +import { auth } from "."; + export const getSession = cache(async () => auth.api.getSession({ headers: await headers() }), );