From 9c91f7e0a8f0afaa30b713920dc59e01161e6805 Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Mon, 10 Nov 2025 11:33:34 -0800 Subject: [PATCH] don't validate pw history contructor --- libs/common/src/models/export/password-history.export.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/common/src/models/export/password-history.export.ts b/libs/common/src/models/export/password-history.export.ts index 0ff666e0a30..e4df5513fc3 100644 --- a/libs/common/src/models/export/password-history.export.ts +++ b/libs/common/src/models/export/password-history.export.ts @@ -42,8 +42,6 @@ export class PasswordHistoryExport { return; } - this.validateRequiredFields(); - this.password = safeGetString(o.password) ?? ""; this.lastUsedDate = o.lastUsedDate; }