Fix issues

This commit is contained in:
Owen
2026-06-06 13:34:24 -07:00
parent cd4d7372a0
commit 4b770d1385
2 changed files with 4 additions and 3 deletions
@@ -123,7 +123,7 @@ export function PolicyAuthStackSectionCreate({
} }
allIdps={allIdps} allIdps={allIdps}
rolesEditor={ rolesEditor={
<FormField <FormField<PolicyFormValues, "roles">
control={parentForm.control} control={parentForm.control}
name="roles" name="roles"
render={({ field }) => ( render={({ field }) => (
@@ -146,7 +146,7 @@ export function PolicyAuthStackSectionCreate({
/> />
} }
usersEditor={ usersEditor={
<FormField <FormField<PolicyFormValues, "users">
control={parentForm.control} control={parentForm.control}
name="users" name="users"
render={({ field }) => ( render={({ field }) => (
@@ -662,7 +662,8 @@ export function PolicyAuthStackSectionEdit({
user: headerAuth.user, user: headerAuth.user,
password: headerAuth.password, password: headerAuth.password,
extendedCompatibility: extendedCompatibility:
headerAuth.extendedCompatibility headerAuth.extendedCompatibility ??
true
} }
: undefined : undefined
} }