From b3e858c033dfc1067802b7303f909605dbb5c4a5 Mon Sep 17 00:00:00 2001 From: Timo Knuth Date: Mon, 12 Jan 2026 17:09:47 +0100 Subject: [PATCH] fehler behoben --- src/types/next-auth.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/next-auth.d.ts b/src/types/next-auth.d.ts index 26b5d61..84c6e24 100644 --- a/src/types/next-auth.d.ts +++ b/src/types/next-auth.d.ts @@ -4,10 +4,12 @@ declare module 'next-auth' { interface Session { user: { id: string; + plan?: string | null; } & DefaultSession['user']; } interface User { id: string; + plan?: string | null; } } \ No newline at end of file