From 5ac895ea3e179d606e22d06b583f7217f2be70f8 Mon Sep 17 00:00:00 2001 From: Yevhen Odynets Date: Wed, 5 Feb 2025 09:21:35 +0200 Subject: [PATCH] add any to exisingUser result --- auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.ts b/auth.ts index e73acf4..cde91d9 100644 --- a/auth.ts +++ b/auth.ts @@ -68,7 +68,7 @@ export const { async jwt({token}) { if (!token?.sub) return token - const exisingUser = await getUserAccountByUserId(token.sub) + const exisingUser: any = await getUserAccountByUserId(token.sub) if (!exisingUser) return token