fehler behoben

This commit is contained in:
Timo Knuth 2026-01-12 17:09:47 +01:00
parent 111575aeda
commit b3e858c033
1 changed files with 2 additions and 0 deletions

View File

@ -4,10 +4,12 @@ declare module 'next-auth' {
interface Session { interface Session {
user: { user: {
id: string; id: string;
plan?: string | null;
} & DefaultSession['user']; } & DefaultSession['user'];
} }
interface User { interface User {
id: string; id: string;
plan?: string | null;
} }
} }