From 2c5ebe48375d6134aae617282a972983d78c5a3c Mon Sep 17 00:00:00 2001 From: Niklas Lausch Date: Thu, 28 Dec 2023 11:19:51 +0100 Subject: [PATCH] fix: removed unused import --- packages/authjs-nuxt/src/runtime/lib/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/authjs-nuxt/src/runtime/lib/server.ts b/packages/authjs-nuxt/src/runtime/lib/server.ts index 85ef680..0190a14 100644 --- a/packages/authjs-nuxt/src/runtime/lib/server.ts +++ b/packages/authjs-nuxt/src/runtime/lib/server.ts @@ -4,7 +4,7 @@ import type { H3Event } from "h3" import { eventHandler, getRequestHeaders, getRequestURL, parseCookies } from "h3" import type { AuthConfig, Session } from "@auth/core/types" import { getToken } from "@auth/core/jwt" -import { checkOrigin, getAuthJsSecret, getRequestFromEvent, getServerOrigin, makeCookiesFromCookieString } from "../utils" +import { checkOrigin, getAuthJsSecret, getRequestFromEvent, getServerOrigin } from "../utils" if (!globalThis.crypto) { // eslint-disable-next-line no-console