fixed properties mismatch

This commit is contained in:
Flaminel
2026-02-15 15:42:45 +02:00
parent 4d8e27b01e
commit 49f0ce9969

View File

@@ -6,7 +6,7 @@ export interface AccountInfo {
username: string;
plexLinked: boolean;
plexUsername: string | null;
has2FA: boolean;
twoFactorEnabled: boolean;
apiKeyPreview: string;
}
@@ -16,7 +16,7 @@ export interface ChangePasswordRequest {
}
export interface Regenerate2faRequest {
currentPassword: string;
password: string;
totpCode: string;
}