Fix settings validation and session errors

This commit is contained in:
gpt-engineer-app[bot]
2025-10-14 23:48:34 +00:00
parent 439a7f4abf
commit 21d16f01ed
5 changed files with 62 additions and 29 deletions

View File

@@ -84,7 +84,7 @@ export interface AuthSession {
user_agent: string | null;
ip: string | null; // Pre-hashed by database function
not_after: string | null;
aal: AALLevel | null;
aal: string | null; // Changed to string to match get_my_sessions() return type
}
/**