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 {
user: {
id: string;
plan?: string | null;
} & DefaultSession['user'];
}
interface User {
id: string;
plan?: string | null;
}
}