From 4c67ac6f677d7c2e3d59aa3c85db82efaf3a95b0 Mon Sep 17 00:00:00 2001 From: Mats Jun Date: Fri, 10 Nov 2023 11:31:09 +0100 Subject: [PATCH] Add missing import for NotFoundError (#719) --- packages/auth/src/auth-options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/auth/src/auth-options.ts b/packages/auth/src/auth-options.ts index 888c900dc..62d406a82 100644 --- a/packages/auth/src/auth-options.ts +++ b/packages/auth/src/auth-options.ts @@ -1,4 +1,4 @@ -import { type ServiceLayer } from "@dotkomonline/core" +import { type ServiceLayer, NotFoundError } from "@dotkomonline/core" import { type DefaultSession, type DefaultUser, type User, type NextAuthOptions } from "next-auth" import CognitoProvider from "next-auth/providers/cognito"