diff --git a/apps/web/src/app/settings/preferences.component.ts b/apps/web/src/app/settings/preferences.component.ts index e1ba6389ab..96de258553 100644 --- a/apps/web/src/app/settings/preferences.component.ts +++ b/apps/web/src/app/settings/preferences.component.ts @@ -167,7 +167,10 @@ export class PreferencesComponent implements OnInit, OnDestroy { ); return; } - const values = this.form.value; + + // must get raw value b/c the vault timeout action is disabled when a policy is applied + // which removes the timeout action property and value from the normal form.value. + const values = this.form.getRawValue(); const activeAcct = await firstValueFrom(this.accountService.activeAccount$);